diff options
author | Diva Canto | 2013-02-19 06:37:20 -0800 |
---|---|---|
committer | Diva Canto | 2013-02-19 06:37:20 -0800 |
commit | 46e182dbf546dcb58d088c043a0baa2dcfed9125 (patch) | |
tree | a3093e7ddb69c45d876229a430e22cda4f4699b4 /OpenSim/Data/MySQL/MySQLOfflineIMData.cs | |
parent | One more sql statement on migration #2 for offline im, to really clean up thi... (diff) | |
download | opensim-SC_OLD-46e182dbf546dcb58d088c043a0baa2dcfed9125.zip opensim-SC_OLD-46e182dbf546dcb58d088c043a0baa2dcfed9125.tar.gz opensim-SC_OLD-46e182dbf546dcb58d088c043a0baa2dcfed9125.tar.bz2 opensim-SC_OLD-46e182dbf546dcb58d088c043a0baa2dcfed9125.tar.xz |
Offline IM: moved the Data and MySQL bits to the corresponding places in core, so that it will be easier to plugin a SQLite backend, if anyone is interested in doing that.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/MySQL/MySQLOfflineIMData.cs (renamed from OpenSim/Addons/OfflineIM/Data/MySQLOfflineIMData.cs) | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/OpenSim/Addons/OfflineIM/Data/MySQLOfflineIMData.cs b/OpenSim/Data/MySQL/MySQLOfflineIMData.cs index 0a61cd2..252f358 100644 --- a/OpenSim/Addons/OfflineIM/Data/MySQLOfflineIMData.cs +++ b/OpenSim/Data/MySQL/MySQLOfflineIMData.cs | |||
@@ -36,16 +36,10 @@ using OpenSim.Data.MySQL; | |||
36 | using OpenMetaverse; | 36 | using OpenMetaverse; |
37 | using MySql.Data.MySqlClient; | 37 | using MySql.Data.MySqlClient; |
38 | 38 | ||
39 | namespace OpenSim.OfflineIM | 39 | namespace OpenSim.Data.MySQL |
40 | { | 40 | { |
41 | public class MySQLOfflineIMData : MySQLGenericTableHandler<OfflineIMData>, IOfflineIMData | 41 | public class MySQLOfflineIMData : MySQLGenericTableHandler<OfflineIMData>, IOfflineIMData |
42 | { | 42 | { |
43 | protected override Assembly Assembly | ||
44 | { | ||
45 | // WARNING! Moving migrations to this assembly!!! | ||
46 | get { return GetType().Assembly; } | ||
47 | } | ||
48 | |||
49 | public MySQLOfflineIMData(string connectionString, string realm) | 43 | public MySQLOfflineIMData(string connectionString, string realm) |
50 | : base(connectionString, realm, "IM_Store") | 44 | : base(connectionString, realm, "IM_Store") |
51 | { | 45 | { |