Browse Source

forgot to add this migration

pull/80/head
jake 2 years ago
parent
commit
71ba3c3c3d
  1. 7
      src/entity/gateway/postgres/migrations/V0003__item_notes.sql

7
src/entity/gateway/postgres/migrations/V0003__item_notes.sql

@ -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
);
Loading…
Cancel
Save