5 lines
242 B
SQL
5 lines
242 B
SQL
-- apply alter tables
|
|
alter table incoming_inventory add column if not exists mrn varchar(255);
|
|
alter table outgoing_inventory add column if not exists mdn varchar(255);
|
|
alter table outgoing_inventory add column if not exists products jsonb;
|