diff options
author | Melanie Thielker | 2008-11-14 19:00:14 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-11-14 19:00:14 +0000 |
commit | 1bd0721dbec03ea833ec639c1759abcc1e7cbdae (patch) | |
tree | 7da6e578c3c19de6fe52cb381543869cdb1ae74c /OpenSim/Data/MySQL | |
parent | Add group permissions to agent inventory. (diff) | |
download | opensim-SC_OLD-1bd0721dbec03ea833ec639c1759abcc1e7cbdae.zip opensim-SC_OLD-1bd0721dbec03ea833ec639c1759abcc1e7cbdae.tar.gz opensim-SC_OLD-1bd0721dbec03ea833ec639c1759abcc1e7cbdae.tar.bz2 opensim-SC_OLD-1bd0721dbec03ea833ec639c1759abcc1e7cbdae.tar.xz |
Add SQLite and the missing migrations files for last commit
Diffstat (limited to 'OpenSim/Data/MySQL')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/003_InventoryStore.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/003_InventoryStore.sql b/OpenSim/Data/MySQL/Resources/003_InventoryStore.sql new file mode 100644 index 0000000..4c6da91 --- /dev/null +++ b/OpenSim/Data/MySQL/Resources/003_InventoryStore.sql | |||
@@ -0,0 +1,5 @@ | |||
1 | BEGIN; | ||
2 | |||
3 | alter table inventoryitems add column inventoryGroupPermissions integer unsigned not null default 0; | ||
4 | |||
5 | COMMIT; | ||