From 56ae3da291e753ac5a3c2457aa97a7a290fe5342 Mon Sep 17 00:00:00 2001 From: Cinder Date: Wed, 4 Mar 2015 10:02:23 -0700 Subject: Chase latest change to asset description length with an update to XAssetStore db tables Signed-off-by: BlueWall --- OpenSim/Data/PGSQL/Resources/XAssetStore.migrations | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'OpenSim/Data/PGSQL') diff --git a/OpenSim/Data/PGSQL/Resources/XAssetStore.migrations b/OpenSim/Data/PGSQL/Resources/XAssetStore.migrations index e87d3a1..79879b8 100644 --- a/OpenSim/Data/PGSQL/Resources/XAssetStore.migrations +++ b/OpenSim/Data/PGSQL/Resources/XAssetStore.migrations @@ -72,4 +72,12 @@ ALTER TABLE xassetsmeta ALTER COLUMN id SET DATA TYPE uuid USING id::uuid; ALTER TABLE xassetsmeta ALTER COLUMN hash SET DATA TYPE bytea USING hash::bytea; ALTER TABLE xassetsdata ALTER COLUMN hash SET DATA TYPE bytea USING hash::bytea; -COMMIT; \ No newline at end of file +COMMIT; + +:VERSION 5 + +BEGIN; + +ALTER TABLE xassetsmeta MODIFY Description varchar(128); + +COMMIT; -- cgit v1.1