aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authorCinder2015-03-04 11:11:01 -0700
committerBlueWall2015-03-04 13:47:15 -0500
commit9921c24c8f1e4195ebb548d5e3ca99ec2bec764a (patch)
tree5d7db51e3d1af849c8976b788760529e0b0e170d /OpenSim/Data
parentChase latest change to asset description length with an update to XAssetStore... (diff)
downloadopensim-SC_OLD-9921c24c8f1e4195ebb548d5e3ca99ec2bec764a.zip
opensim-SC_OLD-9921c24c8f1e4195ebb548d5e3ca99ec2bec764a.tar.gz
opensim-SC_OLD-9921c24c8f1e4195ebb548d5e3ca99ec2bec764a.tar.bz2
opensim-SC_OLD-9921c24c8f1e4195ebb548d5e3ca99ec2bec764a.tar.xz
One more migration fix
Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
Diffstat (limited to 'OpenSim/Data')
-rw-r--r--OpenSim/Data/PGSQL/Resources/AssetStore.migrations2
-rw-r--r--OpenSim/Data/PGSQL/Resources/XAssetStore.migrations2
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/PGSQL/Resources/AssetStore.migrations b/OpenSim/Data/PGSQL/Resources/AssetStore.migrations
index 9919844..fb7d156 100644
--- a/OpenSim/Data/PGSQL/Resources/AssetStore.migrations
+++ b/OpenSim/Data/PGSQL/Resources/AssetStore.migrations
@@ -95,4 +95,4 @@ alter table assets add "creatorid" varchar(36) not null default '';
95 95
96:VERSION 8 96:VERSION 8
97 97
98ALTER TABLE assets MODIFY description varchar(128); 98ALTER TABLE assets ALTER COLUMN description TYPE varchar(128);
diff --git a/OpenSim/Data/PGSQL/Resources/XAssetStore.migrations b/OpenSim/Data/PGSQL/Resources/XAssetStore.migrations
index 79879b8..0e22091 100644
--- a/OpenSim/Data/PGSQL/Resources/XAssetStore.migrations
+++ b/OpenSim/Data/PGSQL/Resources/XAssetStore.migrations
@@ -78,6 +78,6 @@ COMMIT;
78 78
79BEGIN; 79BEGIN;
80 80
81ALTER TABLE xassetsmeta MODIFY Description varchar(128); 81ALTER TABLE xassetsmeta ALTER COLUMN description TYPE varchar(128);
82 82
83COMMIT; 83COMMIT;