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;