mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 02:05:34 +08:00
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.
This commit is contained in:
@@ -29,7 +29,7 @@ using System.Collections.Generic;
|
||||
using OpenSim.Data;
|
||||
using OpenMetaverse;
|
||||
|
||||
namespace OpenSim.OfflineIM
|
||||
namespace OpenSim.Data
|
||||
{
|
||||
public class OfflineIMData
|
||||
{
|
||||
@@ -36,16 +36,10 @@ using OpenSim.Data.MySQL;
|
||||
using OpenMetaverse;
|
||||
using MySql.Data.MySqlClient;
|
||||
|
||||
namespace OpenSim.OfflineIM
|
||||
namespace OpenSim.Data.MySQL
|
||||
{
|
||||
public class MySQLOfflineIMData : MySQLGenericTableHandler<OfflineIMData>, IOfflineIMData
|
||||
{
|
||||
protected override Assembly Assembly
|
||||
{
|
||||
// WARNING! Moving migrations to this assembly!!!
|
||||
get { return GetType().Assembly; }
|
||||
}
|
||||
|
||||
public MySQLOfflineIMData(string connectionString, string realm)
|
||||
: base(connectionString, realm, "IM_Store")
|
||||
{
|
||||
Reference in New Issue
Block a user