diff options
author | Melanie Thielker | 2008-11-14 19:36:29 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-11-14 19:36:29 +0000 |
commit | 5214d39e7ce0de3edc14d0a20c9652f0056ab045 (patch) | |
tree | cdc2972ad12b7618726f09a22ebb7a76ed264785 /OpenSim/Data/MSSQL/Resources | |
parent | Add SQLite and the missing migrations files for last commit (diff) | |
download | opensim-SC_OLD-5214d39e7ce0de3edc14d0a20c9652f0056ab045.zip opensim-SC_OLD-5214d39e7ce0de3edc14d0a20c9652f0056ab045.tar.gz opensim-SC_OLD-5214d39e7ce0de3edc14d0a20c9652f0056ab045.tar.bz2 opensim-SC_OLD-5214d39e7ce0de3edc14d0a20c9652f0056ab045.tar.xz |
Mantis #2618
Thank you, StrawberryFride, for a patch that adds group permission support
to MSSQL. Contains a migration, back up your database.
Diffstat (limited to 'OpenSim/Data/MSSQL/Resources')
-rw-r--r-- | OpenSim/Data/MSSQL/Resources/002_InventoryStore.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Data/MSSQL/Resources/002_InventoryStore.sql b/OpenSim/Data/MSSQL/Resources/002_InventoryStore.sql new file mode 100644 index 0000000..bcc26b8 --- /dev/null +++ b/OpenSim/Data/MSSQL/Resources/002_InventoryStore.sql | |||
@@ -0,0 +1,5 @@ | |||
1 | BEGIN TRANSACTION | ||
2 | |||
3 | ALTER TABLE inventoryitems ADD inventoryGroupPermissions INTEGER NOT NULL default 0 | ||
4 | |||
5 | COMMIT \ No newline at end of file | ||