Typo in DB migration
parent
e35af6c74b
commit
0acc95ff43
|
|
@ -1,6 +1,6 @@
|
|||
alter table CCM_CMS.LIFECYCLE_PHASES add column UUID varchar(255);
|
||||
update CCM_CMS.LIFECYCLE_PHASES set UUID = random_uuid();
|
||||
alter table CCM_CMS.LIFECYCLE_PHASES alter column UUID not null;
|
||||
alter table CCM_CMS.LIFECYCLE_PHASES
|
||||
alter table CCM_CMS.LIFECYLE_PHASES add column UUID varchar(255);
|
||||
update CCM_CMS.LIFECYLE_PHASES set UUID = random_uuid();
|
||||
alter table CCM_CMS.LIFECYLE_PHASES alter column UUID not null;
|
||||
alter table CCM_CMS.LIFECYLE_PHASES
|
||||
add constraint UK_bkk376s9kchydlkuq052shnh5 unique (uuid);
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
alter table CCM_CMS.LIFECYCLE_PHASES add column UUID varchar(255);
|
||||
update CCM_CMS.LIFECYCLE_PHASES set UUID = gen_random_uuid();
|
||||
alter table CCM_CMS.LIFECYCLE_PHASES alter column UUID not null;
|
||||
alter table CCM_CMS.LIFECYCLE_PHASES
|
||||
alter table CCM_CMS.LIFECYLE_PHASES add column UUID varchar(255);
|
||||
update CCM_CMS.LIFECYLE_PHASES set UUID = gen_random_uuid();
|
||||
alter table CCM_CMS.LIFECYLE_PHASES alter column UUID not null;
|
||||
alter table CCM_CMS.LIFECYLE_PHASES
|
||||
add constraint UK_bkk376s9kchydlkuq052shnh5 unique (uuid);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue