mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
Added creator info across the board -- TaskInventoryItems and InventoryItems themselves. Tested. Seems to be working, main tests pass. Nothing done for IARs or HG transfers yet -- this only works for OARs for the time being.
New migration in inventory table in order to make CreatorID varchar(255).
This commit is contained in:
@@ -1334,7 +1334,7 @@ namespace OpenSim.Data.SQLiteLegacy
|
||||
taskItem.Name = (String)row["name"];
|
||||
taskItem.Description = (String)row["description"];
|
||||
taskItem.CreationDate = Convert.ToUInt32(row["creationDate"]);
|
||||
taskItem.CreatorID = new UUID((String)row["creatorID"]);
|
||||
taskItem.CreatorIdentification = (String)row["creatorID"];
|
||||
taskItem.OwnerID = new UUID((String)row["ownerID"]);
|
||||
taskItem.LastOwnerID = new UUID((String)row["lastOwnerID"]);
|
||||
taskItem.GroupID = new UUID((String)row["groupID"]);
|
||||
@@ -1664,7 +1664,7 @@ namespace OpenSim.Data.SQLiteLegacy
|
||||
row["name"] = taskItem.Name;
|
||||
row["description"] = taskItem.Description;
|
||||
row["creationDate"] = taskItem.CreationDate;
|
||||
row["creatorID"] = taskItem.CreatorID.ToString();
|
||||
row["creatorID"] = taskItem.CreatorIdentification.ToString();
|
||||
row["ownerID"] = taskItem.OwnerID.ToString();
|
||||
row["lastOwnerID"] = taskItem.LastOwnerID.ToString();
|
||||
row["groupID"] = taskItem.GroupID.ToString();
|
||||
|
||||
Reference in New Issue
Block a user