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