diff options
author | Cinder | 2015-03-04 10:02:23 -0700 |
---|---|---|
committer | BlueWall | 2015-03-04 12:10:41 -0500 |
commit | e520364f65e1915e13d28b829e9dd62f6904957d (patch) | |
tree | d178d4c543f0dc343e7b08c03374cba29689275c /OpenSim/Data/MySQL/Resources/XAssetStore.migrations | |
parent | Follow up to last commit, fix field length (diff) | |
download | opensim-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 'OpenSim/Data/MySQL/Resources/XAssetStore.migrations')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/XAssetStore.migrations | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/OpenSim/Data/MySQL/Resources/XAssetStore.migrations b/OpenSim/Data/MySQL/Resources/XAssetStore.migrations index 0c49d0d..d56c917 100644 --- a/OpenSim/Data/MySQL/Resources/XAssetStore.migrations +++ b/OpenSim/Data/MySQL/Resources/XAssetStore.migrations | |||
@@ -24,4 +24,12 @@ 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 | ||
27 | COMMIT; \ No newline at end of file | 27 | COMMIT; |
28 | |||
29 | :VERSION 2 | ||
30 | |||
31 | BEGIN; | ||
32 | |||
33 | ALTER TABLE xassetsmeta MODIFY Description varchar(128); | ||
34 | |||
35 | COMMIT; | ||