aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Resources
diff options
context:
space:
mode:
authorMelanie Thielker2008-11-14 19:00:14 +0000
committerMelanie Thielker2008-11-14 19:00:14 +0000
commit1bd0721dbec03ea833ec639c1759abcc1e7cbdae (patch)
tree7da6e578c3c19de6fe52cb381543869cdb1ae74c /OpenSim/Data/MySQL/Resources
parentAdd group permissions to agent inventory. (diff)
downloadopensim-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/Resources')
-rw-r--r--OpenSim/Data/MySQL/Resources/003_InventoryStore.sql5
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 @@
1BEGIN;
2
3alter table inventoryitems add column inventoryGroupPermissions integer unsigned not null default 0;
4
5COMMIT;