elseware/src/entity/gateway/postgres/migrations/V0003__item_notes.sql
jake 71ba3c3c3d
Some checks failed
continuous-integration/drone/push Build is failing
forgot to add this migration
2021-12-10 13:25:27 -07:00

8 lines
184 B
SQL

drop table item_location;
create table item_note (
item integer references item (id) not null,
note jsonb not null,
created_at timestamptz default current_timestamp not null
);