6 lines
383 B
SQL
6 lines
383 B
SQL
-- apply alter tables
|
|
alter table purchase_order add column if not exists all_loading_site boolean default true not null;
|
|
alter table purchase_order add column if not exists all_unloading_site boolean default true not null;
|
|
alter table purchase_order add column if not exists unloading_plant_id varchar(255);
|
|
alter table purchase_order add column if not exists loading_site_id uuid;
|