diff options
author | BlueWall | 2014-10-27 17:27:42 -0400 |
---|---|---|
committer | BlueWall | 2014-10-27 17:27:42 -0400 |
commit | b46387091470f3d1465c05625a656228ca54fd61 (patch) | |
tree | bf1dce79eda615246f32ec88b2df61a60a223cc4 /OpenSim/Data/MySQL/Resources | |
parent | Refresh OpenMetaverse libraries again at 0f4b361 but with Windows builds to s... (diff) | |
download | opensim-SC-b46387091470f3d1465c05625a656228ca54fd61.zip opensim-SC-b46387091470f3d1465c05625a656228ca54fd61.tar.gz opensim-SC-b46387091470f3d1465c05625a656228ca54fd61.tar.bz2 opensim-SC-b46387091470f3d1465c05625a656228ca54fd61.tar.xz |
Add hypergrid teleporting support to user profiles picks
Diffstat (limited to 'OpenSim/Data/MySQL/Resources')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/UserProfiles.migrations | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Data/MySQL/Resources/UserProfiles.migrations b/OpenSim/Data/MySQL/Resources/UserProfiles.migrations index bd325da..87e99fa 100644 --- a/OpenSim/Data/MySQL/Resources/UserProfiles.migrations +++ b/OpenSim/Data/MySQL/Resources/UserProfiles.migrations | |||
@@ -90,4 +90,9 @@ CREATE TABLE IF NOT EXISTS `usersettings` ( | |||
90 | `email` varchar(254) NOT NULL, | 90 | `email` varchar(254) NOT NULL, |
91 | PRIMARY KEY (`useruuid`) | 91 | PRIMARY KEY (`useruuid`) |
92 | ) ENGINE=MyISAM DEFAULT CHARSET=latin1; | 92 | ) ENGINE=MyISAM DEFAULT CHARSET=latin1; |
93 | commit; \ No newline at end of file | 93 | commit; |
94 | |||
95 | :VERSION 4 # ------------------------------- | ||
96 | begin; | ||
97 | ALTER TABLE userpicks ADD COLUMN gatekeeper varchar(255); | ||
98 | commit; | ||