rename upgrade18

This commit is contained in:
sparkyx 2020-11-11 21:32:41 +01:00
parent 5c160657d4
commit e97f6ff385

View file

@ -0,0 +1,7 @@
begin;
ALTER TABLE public.audit_connect DROP CONSTRAINT valid_state ;
ALTER TABLE public.audit_connect ADD CONSTRAINT valid_state CHECK ( ac_state in ('FAIL','SUCCESS','AUDIT','ADMIN'));
select upgrade_repo(19);
commit;