diff options
author | AlexRa | 2010-05-19 10:16:56 +0300 |
---|---|---|
committer | AlexRa | 2010-05-19 21:50:30 +0300 |
commit | eacd8d0263fa41c4d45c880b02f5be709eaab32f (patch) | |
tree | 6c6c31b4f1560c4d210931feae718a007ec2377f | |
parent | SQLite: CreatorID added (and asset_flags moved) to the migration script (diff) | |
download | opensim-SC_OLD-eacd8d0263fa41c4d45c880b02f5be709eaab32f.zip opensim-SC_OLD-eacd8d0263fa41c4d45c880b02f5be709eaab32f.tar.gz opensim-SC_OLD-eacd8d0263fa41c4d45c880b02f5be709eaab32f.tar.bz2 opensim-SC_OLD-eacd8d0263fa41c4d45c880b02f5be709eaab32f.tar.xz |
MySQL: added CreatorID, moved asset_flag to migration script
-rw-r--r-- | OpenSim/Data/MySQL/Resources/AssetStore.migrations | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/AssetStore.migrations b/OpenSim/Data/MySQL/Resources/AssetStore.migrations index b9595f0..3fd58b7 100644 --- a/OpenSim/Data/MySQL/Resources/AssetStore.migrations +++ b/OpenSim/Data/MySQL/Resources/AssetStore.migrations | |||
@@ -67,3 +67,11 @@ COMMIT; | |||
67 | 67 | ||
68 | DELETE FROM assets WHERE id = 'dc4b9f0b-d008-45c6-96a4-01dd947ac621' | 68 | DELETE FROM assets WHERE id = 'dc4b9f0b-d008-45c6-96a4-01dd947ac621' |
69 | 69 | ||
70 | :VERSION 7 | ||
71 | |||
72 | ALTER TABLE assets ADD COLUMN asset_flags INTEGER NOT NULL DEFAULT 0; | ||
73 | |||
74 | :VERSION 8 | ||
75 | |||
76 | alter table assets add CreatorID varchar(36) not null default '' | ||
77 | |||