Added check to parm_periode table: p_end >= p_start

This commit is contained in:
Stan Pinte 2005-07-31 10:40:15 +00:00
parent 6ffefcd8d6
commit 959663449f

View file

@ -94,3 +94,6 @@ insert into parameter (pr_id) values ('MY_NUMBER');
update version set val=6;
--make sure that p_start < p_end
ALTER TABLE parm_periode ADD CHECK (p_end >= p_start);