elseware/src/entity/src/gateway/postgres/migrations/V0011__shared_bank.sql
jake d30a2bd3a3
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
move all the crate dirs back under src/
2023-11-13 23:41:48 -07:00

17 lines
368 B
SQL

create table shared_bank (
user_account integer references user_accounts (id) not null,
items jsonb not null,
name varchar(128) not null,
unique (user_account, name)
);
create table shared_bank_meseta (
user_account integer references user_accounts (id) not null,
name varchar(128) not null,
meseta integer not null,
unique (user_account, name)
);