forked from lix-project/hydra
sql/upgrade-81: remove unnecessary comment
This commit is contained in:
parent
9c4e6f78e7
commit
d0b6329aa8
|
@ -2,5 +2,3 @@ alter table runcommandlogs add column uuid uuid;
|
||||||
update runcommandlogs set uuid = gen_random_uuid() where uuid is null;
|
update runcommandlogs set uuid = gen_random_uuid() where uuid is null;
|
||||||
alter table runcommandlogs alter column uuid set not null;
|
alter table runcommandlogs alter column uuid set not null;
|
||||||
alter table runcommandlogs add constraint RunCommandLogs_uuid_unique unique(uuid);
|
alter table runcommandlogs add constraint RunCommandLogs_uuid_unique unique(uuid);
|
||||||
# the unique uuid constraint adds a unique, btree index, so we don't need to create out own:
|
|
||||||
# "runcommandlogs_uuid_unique" UNIQUE CONSTRAINT, btree (uuid)
|
|
||||||
|
|
Loading…
Reference in a new issue