aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/PGSQL/Resources/XAssetStore.migrations
diff options
context:
space:
mode:
authorCinder2015-03-04 10:02:23 -0700
committerBlueWall2015-03-04 12:10:41 -0500
commite520364f65e1915e13d28b829e9dd62f6904957d (patch)
treed178d4c543f0dc343e7b08c03374cba29689275c /OpenSim/Data/PGSQL/Resources/XAssetStore.migrations
parentFollow up to last commit, fix field length (diff)
downloadopensim-SC_OLD-e520364f65e1915e13d28b829e9dd62f6904957d.zip
opensim-SC_OLD-e520364f65e1915e13d28b829e9dd62f6904957d.tar.gz
opensim-SC_OLD-e520364f65e1915e13d28b829e9dd62f6904957d.tar.bz2
opensim-SC_OLD-e520364f65e1915e13d28b829e9dd62f6904957d.tar.xz
Chase latest change to asset description length with an update to XAssetStore db tables
Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/PGSQL/Resources/XAssetStore.migrations10
1 files changed, 9 insertions, 1 deletions
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;
72ALTER TABLE xassetsmeta ALTER COLUMN hash SET DATA TYPE bytea USING hash::bytea; 72ALTER TABLE xassetsmeta ALTER COLUMN hash SET DATA TYPE bytea USING hash::bytea;
73ALTER TABLE xassetsdata ALTER COLUMN hash SET DATA TYPE bytea USING hash::bytea; 73ALTER TABLE xassetsdata ALTER COLUMN hash SET DATA TYPE bytea USING hash::bytea;
74 74
75COMMIT; \ No newline at end of file 75COMMIT;
76
77:VERSION 5
78
79BEGIN;
80
81ALTER TABLE xassetsmeta MODIFY Description varchar(128);
82
83COMMIT;