From e5c0b68849d21e9f2d91b23586143e46becbce3b Mon Sep 17 00:00:00 2001 From: Cinder Date: Tue, 3 Mar 2015 20:42:22 -0700 Subject: [PATCH] Follow up to last commit, fix field length Signed-off-by: BlueWall --- OpenSim/Data/MySQL/Resources/AssetStore.migrations | 3 +++ OpenSim/Data/PGSQL/Resources/AssetStore.migrations | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/OpenSim/Data/MySQL/Resources/AssetStore.migrations b/OpenSim/Data/MySQL/Resources/AssetStore.migrations index e0526fed9c..2c5e7c389c 100644 --- a/OpenSim/Data/MySQL/Resources/AssetStore.migrations +++ b/OpenSim/Data/MySQL/Resources/AssetStore.migrations @@ -75,3 +75,6 @@ ALTER TABLE assets ADD COLUMN asset_flags INTEGER NOT NULL DEFAULT 0; ALTER TABLE assets ADD COLUMN CreatorID varchar(128) NOT NULL DEFAULT ''; +:VERSION 9 + +ALTER TABLE assets MODIFY description varchar(128); diff --git a/OpenSim/Data/PGSQL/Resources/AssetStore.migrations b/OpenSim/Data/PGSQL/Resources/AssetStore.migrations index b6db58595b..9919844637 100644 --- a/OpenSim/Data/PGSQL/Resources/AssetStore.migrations +++ b/OpenSim/Data/PGSQL/Resources/AssetStore.migrations @@ -92,3 +92,7 @@ ALTER TABLE assets ADD "asset_flags" INTEGER NOT NULL DEFAULT 0; :VERSION 7 alter table assets add "creatorid" varchar(36) not null default ''; + +:VERSION 8 + +ALTER TABLE assets MODIFY description varchar(128);