aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authorBlueWall2015-03-04 13:47:02 -0500
committerBlueWall2015-03-04 13:47:02 -0500
commit11a24d04b678ed517c50dfd50575c210137cca3b (patch)
treefd11e6e0b2c8129a49dc626fb190e74f69697857 /OpenSim/Data
parentusability fixes for LSL API (diff)
downloadopensim-SC_OLD-11a24d04b678ed517c50dfd50575c210137cca3b.zip
opensim-SC_OLD-11a24d04b678ed517c50dfd50575c210137cca3b.tar.gz
opensim-SC_OLD-11a24d04b678ed517c50dfd50575c210137cca3b.tar.bz2
opensim-SC_OLD-11a24d04b678ed517c50dfd50575c210137cca3b.tar.xz
Revert "Chase latest change to asset description length with an update to XAssetStore db tables"
This reverts commit e520364f65e1915e13d28b829e9dd62f6904957d.
Diffstat (limited to 'OpenSim/Data')
-rw-r--r--OpenSim/Data/MySQL/Resources/XAssetStore.migrations10
-rw-r--r--OpenSim/Data/PGSQL/Resources/XAssetStore.migrations10
2 files changed, 2 insertions, 18 deletions
diff --git a/OpenSim/Data/MySQL/Resources/XAssetStore.migrations b/OpenSim/Data/MySQL/Resources/XAssetStore.migrations
index d56c917..0c49d0d 100644
--- a/OpenSim/Data/MySQL/Resources/XAssetStore.migrations
+++ b/OpenSim/Data/MySQL/Resources/XAssetStore.migrations
@@ -24,12 +24,4 @@ CREATE TABLE `XAssetsData` (
24 PRIMARY KEY (`hash`) 24 PRIMARY KEY (`hash`)
25) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Version 1'; 25) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Version 1';
26 26
27COMMIT; 27COMMIT; \ No newline at end of file
28
29:VERSION 2
30
31BEGIN;
32
33ALTER TABLE xassetsmeta MODIFY Description varchar(128);
34
35COMMIT;
diff --git a/OpenSim/Data/PGSQL/Resources/XAssetStore.migrations b/OpenSim/Data/PGSQL/Resources/XAssetStore.migrations
index 79879b8..e87d3a1 100644
--- a/OpenSim/Data/PGSQL/Resources/XAssetStore.migrations
+++ b/OpenSim/Data/PGSQL/Resources/XAssetStore.migrations
@@ -72,12 +72,4 @@ 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; 75COMMIT; \ No newline at end of file
76
77:VERSION 5
78
79BEGIN;
80
81ALTER TABLE xassetsmeta MODIFY Description varchar(128);
82
83COMMIT;