8 lines
184 B
MySQL
8 lines
184 B
MySQL
|
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
|
||
|
);
|