1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
-- ==============================================================
-- GNUmed database schema change script
--
-- License: GPL v2 or later
-- Author: karsten.hilbert@gmx.net
--
-- ==============================================================
\set ON_ERROR_STOP 1
--set default_transaction_read_only to off;
-- --------------------------------------------------------------
-- .amount
comment on column ref.consumable_substance.amount is
'The amount of substance.';
\unset ON_ERROR_STOP
alter table ref.consumable_substance drop constraint ref_consumable_sane_amount cascade;
\set ON_ERROR_STOP 1
alter table ref.consumable_substance
alter column amount
set not null;
alter table ref.consumable_substance
add constraint ref_consumable_sane_amount
check (amount >= 0);
-- --------------------------------------------------------------
-- table constraints
\unset ON_ERROR_STOP
alter table ref.consumable_substance drop constraint ref_consumable_uniq_subst_amount_unit cascade;
\set ON_ERROR_STOP 1
alter table ref.consumable_substance
add constraint ref_consumable_uniq_subst_amount_unit
unique(description, amount, unit);
-- --------------------------------------------------------------
update ref.consumable_substance set
description = 'Chlordiazepoxide'
where
description = 'Chlodiazepoxide';
update ref.consumable_substance set
description = 'Enalapril Maleate'
where
description = 'Enalpril Maleate';
update ref.consumable_substance set
description = 'Acabose'
where
description = 'Acarbose';
-- --------------------------------------------------------------
select gm.log_script_insertion('v16-ref-consumable_substance-dynamic.sql', '16.0');
|