aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authorMelanie Thielker2008-08-14 11:15:11 +0000
committerMelanie Thielker2008-08-14 11:15:11 +0000
commit17715da311797d9c538756c996c8add9403a99c5 (patch)
tree1b0ab77c38004835be01bfa5165cc800d121d9cb /OpenSim/Data
parentThanks, BlueWall, for a patch that: (diff)
downloadopensim-SC_OLD-17715da311797d9c538756c996c8add9403a99c5.zip
opensim-SC_OLD-17715da311797d9c538756c996c8add9403a99c5.tar.gz
opensim-SC_OLD-17715da311797d9c538756c996c8add9403a99c5.tar.bz2
opensim-SC_OLD-17715da311797d9c538756c996c8add9403a99c5.tar.xz
Add the UserStore migrations to the TP fixes patch
Diffstat (limited to 'OpenSim/Data')
-rw-r--r--OpenSim/Data/MySQL/Resources/002_UserStore.sql5
-rw-r--r--OpenSim/Data/SQLite/Resources/002_UserStore.sql5
2 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/002_UserStore.sql b/OpenSim/Data/MySQL/Resources/002_UserStore.sql
new file mode 100644
index 0000000..393cea0
--- /dev/null
+++ b/OpenSim/Data/MySQL/Resources/002_UserStore.sql
@@ -0,0 +1,5 @@
1BEGIN;
2
3ALTER TABLE users add homeRegionID char(36) NOT NULL default '00000000-0000-0000-0000-000000000000';
4
5COMMIT;
diff --git a/OpenSim/Data/SQLite/Resources/002_UserStore.sql b/OpenSim/Data/SQLite/Resources/002_UserStore.sql
new file mode 100644
index 0000000..48fc680
--- /dev/null
+++ b/OpenSim/Data/SQLite/Resources/002_UserStore.sql
@@ -0,0 +1,5 @@
1BEGIN;
2
3ALTER TABLE users add homeRegionID varchar(36) NOT NULL default '00000000-0000-0000-0000-000000000000';
4
5COMMIT;