aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Resources/UserProfiles.migrations
diff options
context:
space:
mode:
authorDiva Canto2013-12-06 16:02:03 -0800
committerDiva Canto2013-12-06 16:02:03 -0800
commit5047bd7b4403177fb92a6b4c84a7ba2eaff3b86e (patch)
tree855b759cf5de6fff16e81b39d09eeaeab7c3d012 /OpenSim/Data/MySQL/Resources/UserProfiles.migrations
parentFixed misleading comment (diff)
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff)
downloadopensim-SC-5047bd7b4403177fb92a6b4c84a7ba2eaff3b86e.zip
opensim-SC-5047bd7b4403177fb92a6b4c84a7ba2eaff3b86e.tar.gz
opensim-SC-5047bd7b4403177fb92a6b4c84a7ba2eaff3b86e.tar.bz2
opensim-SC-5047bd7b4403177fb92a6b4c84a7ba2eaff3b86e.tar.xz
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/MySQL/Resources/UserProfiles.migrations10
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/UserProfiles.migrations b/OpenSim/Data/MySQL/Resources/UserProfiles.migrations
index c29f1ab..bd325da 100644
--- a/OpenSim/Data/MySQL/Resources/UserProfiles.migrations
+++ b/OpenSim/Data/MySQL/Resources/UserProfiles.migrations
@@ -81,3 +81,13 @@ CREATE TABLE IF NOT EXISTS `userdata` (
81 81
82commit; 82commit;
83 83
84:VERSION 3 # -------------------------------
85begin;
86CREATE TABLE IF NOT EXISTS `usersettings` (
87 `useruuid` varchar(36) NOT NULL,
88 `imviaemail` enum('true','false') NOT NULL,
89 `visible` enum('true','false') NOT NULL,
90 `email` varchar(254) NOT NULL,
91 PRIMARY KEY (`useruuid`)
92) ENGINE=MyISAM DEFAULT CHARSET=latin1;
93commit; \ No newline at end of file