mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 09:45:47 +08:00
bad merge?
This commit is contained in:
@@ -149,7 +149,7 @@ namespace OpenSim.Data.PGSQL
|
||||
/// Create asset in m_database
|
||||
/// </summary>
|
||||
/// <param name="asset">the asset</param>
|
||||
override public void StoreAsset(AssetBase asset)
|
||||
override public bool StoreAsset(AssetBase asset)
|
||||
{
|
||||
|
||||
string sql =
|
||||
@@ -208,6 +208,7 @@ namespace OpenSim.Data.PGSQL
|
||||
m_log.Error("[ASSET DB]: Error storing item :" + e.Message + " sql "+sql);
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -325,5 +325,10 @@ namespace OpenSim.Data.PGSQL
|
||||
return DoQuery(cmd);
|
||||
}
|
||||
}
|
||||
|
||||
public UserAccountData[] GetUsersWhere(UUID scopeID, string where)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -81,6 +81,7 @@ CREATE TABLE userdata (
|
||||
|
||||
commit;
|
||||
|
||||
<<<<<<< HEAD
|
||||
:VERSION 3 # -------------------------------
|
||||
begin;
|
||||
CREATE TABLE usersettings (
|
||||
@@ -152,4 +153,6 @@ BEGIN;
|
||||
|
||||
ALTER TABLE usersettings ALTER COLUMN imviaemail SET DATA TYPE boolean USING CASE WHEN false THEN false ELSE true END;
|
||||
|
||||
COMMIT;
|
||||
COMMIT;
|
||||
=======
|
||||
>>>>>>> avn/ubitvar
|
||||
|
||||
Reference in New Issue
Block a user