diff options
author | Melanie | 2009-09-04 08:10:05 +0100 |
---|---|---|
committer | Melanie | 2009-09-04 08:10:05 +0100 |
commit | 67f803c919324f49e21279faa43c9578b625529e (patch) | |
tree | 4924c2931e34c2a19645ed7d918da17b54e791f6 /OpenSim/Data/MySQL/MySQLAuthenticationData.cs | |
parent | Fully implement unencrypted auth token operations (diff) | |
download | opensim-SC_OLD-67f803c919324f49e21279faa43c9578b625529e.zip opensim-SC_OLD-67f803c919324f49e21279faa43c9578b625529e.tar.gz opensim-SC_OLD-67f803c919324f49e21279faa43c9578b625529e.tar.bz2 opensim-SC_OLD-67f803c919324f49e21279faa43c9578b625529e.tar.xz |
Add the new AuthStore to migrations. Update OpenSim.Server.ini
Diffstat (limited to 'OpenSim/Data/MySQL/MySQLAuthenticationData.cs')
-rw-r--r-- | OpenSim/Data/MySQL/MySQLAuthenticationData.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/MySQLAuthenticationData.cs b/OpenSim/Data/MySQL/MySQLAuthenticationData.cs index 1ee64ce..afd59bd 100644 --- a/OpenSim/Data/MySQL/MySQLAuthenticationData.cs +++ b/OpenSim/Data/MySQL/MySQLAuthenticationData.cs | |||
@@ -45,6 +45,9 @@ namespace OpenSim.Data.MySQL | |||
45 | : base(connectionString) | 45 | : base(connectionString) |
46 | { | 46 | { |
47 | m_Realm = realm; | 47 | m_Realm = realm; |
48 | |||
49 | Migration m = new Migration(m_Connection, GetType().Assembly, "AuthStore"); | ||
50 | m.Update(); | ||
48 | } | 51 | } |
49 | 52 | ||
50 | public AuthenticationData Get(UUID principalID) | 53 | public AuthenticationData Get(UUID principalID) |