8 lines
184 B
MySQL
Raw Normal View History

2021-12-10 13:25:27 -07:00
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
);