* Added "create-region" console command. Syntax: create-region <name> <region.xml filename>

* Spring cleaning.
This commit is contained in:
Adam Frisby
2007-10-23 12:44:12 +00:00
parent 1c8809077e
commit 0c9933fd0f
3 changed files with 57 additions and 31 deletions

View File

@@ -331,11 +331,6 @@ namespace OpenSim.DataStore.MonoSqlite
createCol(terrain, "Revision", typeof(System.Int32));
createCol(terrain, "Heightfield", typeof(System.Byte[]));
/* // Attempting to work out requirements to get SQLite to actually *save* the data.
createCol(terrain, "PrIndex", typeof(System.String));
terrain.PrimaryKey = new DataColumn[] { terrain.Columns["PrIndex"] };
*/
return terrain;
}