TRADING YEAH LETS GO #80

Merged
jake merged 41 commits from trading into master 2021-12-28 13:05:27 -05:00
Showing only changes of commit 71ba3c3c3d - Show all commits

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
);