mantis 7341: change asset creatorid size to 128 on pgsql to match mysql

This commit is contained in:
UbitUmarov
2021-11-20 19:32:39 +00:00
parent 68f3fbd8c6
commit c786571c2f

View File

@@ -97,3 +97,14 @@ alter table assets add "creatorid" varchar(36) not null default '';
BEGIN TRANSACTION;
COMMIT;
:VERSION 9
BEGIN TRANSACTION;
--# "creatorID" goes up to VARCHAR(128)
alter table assets
alter column "creatorID" type varchar(128);
Commit;