mirror of
https://github.com/opensim/opensim.git
synced 2026-05-14 18:55:39 +08:00
Fix some artefacts that came from merging the OSGrid code.
This commit is contained in:
@@ -75,6 +75,7 @@ namespace OpenSim.Data.MySQL
|
||||
{
|
||||
using (MySqlConnection conn = new MySqlConnection(m_ConnectionString))
|
||||
{
|
||||
conn.Open();
|
||||
Migration m = new Migration(conn, Assembly, "FSAssetStore");
|
||||
m.Update();
|
||||
}
|
||||
@@ -150,7 +151,7 @@ namespace OpenSim.Data.MySQL
|
||||
|
||||
using (MySqlCommand cmd = conn.CreateCommand())
|
||||
{
|
||||
cmd.CommandText = String.Format("select id, name, description, type, hash, create_time, asset_flags from {0} where id = ?id", m_Table);
|
||||
cmd.CommandText = String.Format("select id, name, description, type, hash, create_time, asset_flags, access_time from {0} where id = ?id", m_Table);
|
||||
cmd.Parameters.AddWithValue("?id", id);
|
||||
|
||||
using (IDataReader reader = cmd.ExecuteReader())
|
||||
|
||||
Reference in New Issue
Block a user