From c786571c2f3c27f900059de2ebd9f3aee40ee396 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Sat, 20 Nov 2021 19:32:39 +0000 Subject: [PATCH] mantis 7341: change asset creatorid size to 128 on pgsql to match mysql --- OpenSim/Data/PGSQL/Resources/AssetStore.migrations | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/OpenSim/Data/PGSQL/Resources/AssetStore.migrations b/OpenSim/Data/PGSQL/Resources/AssetStore.migrations index 7a858b4100..31db577351 100644 --- a/OpenSim/Data/PGSQL/Resources/AssetStore.migrations +++ b/OpenSim/Data/PGSQL/Resources/AssetStore.migrations @@ -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;