diff options
author | Cinder | 2015-03-04 10:02:23 -0700 |
---|---|---|
committer | BlueWall | 2015-03-04 13:47:15 -0500 |
commit | 56ae3da291e753ac5a3c2457aa97a7a290fe5342 (patch) | |
tree | 9c89c9caaf70a1f72f01c2bc689dcf252e59f344 /OpenSim/Data/PGSQL/Resources | |
parent | Revert "Chase latest change to asset description length with an update to XAs... (diff) | |
download | opensim-SC-56ae3da291e753ac5a3c2457aa97a7a290fe5342.zip opensim-SC-56ae3da291e753ac5a3c2457aa97a7a290fe5342.tar.gz opensim-SC-56ae3da291e753ac5a3c2457aa97a7a290fe5342.tar.bz2 opensim-SC-56ae3da291e753ac5a3c2457aa97a7a290fe5342.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 'OpenSim/Data/PGSQL/Resources')
-rw-r--r-- | OpenSim/Data/PGSQL/Resources/XAssetStore.migrations | 10 |
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; | |||
72 | ALTER TABLE xassetsmeta ALTER COLUMN hash SET DATA TYPE bytea USING hash::bytea; | 72 | ALTER TABLE xassetsmeta ALTER COLUMN hash SET DATA TYPE bytea USING hash::bytea; |
73 | ALTER TABLE xassetsdata ALTER COLUMN hash SET DATA TYPE bytea USING hash::bytea; | 73 | ALTER TABLE xassetsdata ALTER COLUMN hash SET DATA TYPE bytea USING hash::bytea; |
74 | 74 | ||
75 | COMMIT; \ No newline at end of file | 75 | COMMIT; |
76 | |||
77 | :VERSION 5 | ||
78 | |||
79 | BEGIN; | ||
80 | |||
81 | ALTER TABLE xassetsmeta MODIFY Description varchar(128); | ||
82 | |||
83 | COMMIT; | ||