aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/Migration.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-02-12* optimized usings.lbsa711-1/+1
2008-12-08Reinstate setting timeout to never, the default 30 second timeout was ↵idb1-1/+1
causing problems with big migrations
2008-12-02* Reapply http://opensimulator.org/mantis/view.php?id=2710Justin Clarke Casey1-2/+8
* This patch gets NHibernate working *** PLEASE NOTE: This patch now requires the libmono-oracle2.0-cil library to be installed on Ubuntu (to stop the System.Data.Oracle missing failure) *** * Not sure what the dependency is on other distros. Adding this info to http://opensimulator.org/wiki/Build_Instructions would be most welcome * Adds Castle.* libraries that were missing last time (note, dlls have been added from http://downloads.sourceforge.net/nhibernate/NHibernate-2.0.1.GA-bin.zip)
2008-12-01* Unforunately it turns out not to be that simple. Revert the rest of r7560 ↵Justin Clarke Casey1-8/+2
for now.
2008-12-01* From Mantis#2701 - Implements NHibernate data adapter, adds support for ↵Adam Frisby1-2/+8
MsSql2005 to NHibernate. * Patch courtesy of Adminotech and realXtend. Thanks!
2008-09-20remove some extraneous debug messages from migrationsSean Dague1-2/+0
2008-09-12* minor: spelling mistake and message tidying on Migration messagesJustin Clarke Casey1-5/+5
2008-09-01Mantis #2095Melanie Thielker1-5/+5
Thank you, RuudL, for a complete adaptation of migration and estate data to MSSQL, and the updating of the RegionData handling in MSSQL.
2008-08-18Formatting cleanup.Jeff Ames1-16/+16
2008-06-27dr scofield's warning safari:Dr Scofield1-23/+23
* commented out [Obsolete(....)] attributes where no replacement feature was available: if we want to attribute code that we think needs to be reworked, we should define a new attribute and use that instead (together with a little tool to retrieve all the attributed code then) * commenting out unused variables
2008-06-16set CommandTimeout = 0 in the migration commands so that longSean Dague1-0/+2
migrations (like converting asset ids) don't run into the normal 30 second kill switch.
2008-06-16be a bit more verbose about what we are doing on the migrationSean Dague1-0/+7
side so that people don't think we're hung.
2008-06-16fix nhibernate driver so that it starts (based on the appearanceSean Dague1-1/+2
changes it wouldn't come up). include embedded dialect specific sql files for nhibernate migrations figure out how to get the raw db connection so that migrations can work with nhibernate. create initial migration for NHibernate + SQLite + Assets.
2008-06-16change some messages on the migrations front to be Sean Dague1-5/+4
more clear
2008-06-16the beginning of the great id format migration. This makesSean Dague1-0/+2
asset uuids no longer binary. I've tested this migration a few times, and it seems working in all the scenarios I've found but it wouldn't hurt to backup your asset db before running this as it does touch a very sensitive part of our content system.
2008-06-13Update svn properties, clean up formatting, refactor out duplicate ↵Jeff Ames1-7/+16
hard-coded port numbers.
2008-06-11check in working migration code fore SQLite. This Sean Dague1-1/+7
is now using migrations instead of the old model to create tables. Tested for existing old tables, and for creating new ones.
2008-06-10I'm going to need the Version property to manage Sean Dague1-0/+6
migrating from the old to the new system. Silly legacy code.
2008-06-10update of migration code to be more sane on versionSean Dague1-40/+37
tracking, and support sub types that we'll need for nhibernate.
2008-06-10Update svn properties. Formatting cleanup.Jeff Ames1-8/+16
2008-06-09actually create and populate the migrations table correctly.Sean Dague1-8/+25
2008-06-09migrations seem to not break anything at this point. Sean Dague1-12/+24
Tomorrow I'll start trying to integrate them into sqlite to see if this works right for table migration.
2008-06-09move Migration support into OpenSim.Data, because itSean Dague1-1/+1
really turned out to be small enough to not need it's own assembly
2008-06-09fill out some more migration facilitiesSean Dague1-19/+50
2008-06-09more work in progress migration code, still a while beforeSean Dague1-4/+94
this becomes useful
2008-06-09start in on the shell for a generic database versioning module. My Sean Dague1-32/+38
intent is to create an easier way to manage database table versions like the model used for ruby on rails migrations.
2008-05-20Add copyright notices.Jeff Ames1-3/+28
Fix spelling typo (Thanks ChrisDown for pointing this out)
2008-05-11* Added NPCModule and NPCAvatar classes for NPCs. Primitive, but we can grow ↵Adam Frisby1-2/+0
them out. * Fix for Scene.Inventory.cs - It assumes every entity at startup is a SceneObjectGroup. (Actually, this shouldn't have compiled[!] without a warning.) * Fix for LandManager at startup - it assumes there's a land channel when perhaps there isnt. (Bug that needs another refactor to fix. [Mike - I've assigned a ticket to you about this])
2008-05-09Update svn properties.Jeff Ames1-48/+48
2008-05-08* Some refactorings.Adam Frisby1-0/+48
* Added shell of new Python scripting engine. Similar in design to the one used by Rex, but will be structured at a region rather than object level, also is a region module.