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