forgot to add this migration
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
jake 2021-12-10 13:25:27 -07:00
parent b3b6dad6ad
commit 71ba3c3c3d

View File

@ -0,0 +1,7 @@
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
);