aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite/Resources/EstateStore.migrations (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang1-48/+20
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel1-0/+9
2010-05-23Split migrations for RegionStore and EstateStore (see WARNING!)AlexRa1-41/+27
ok, so the estate stores now want their own migration files, but as it happened the SQL definition were inside the Region migrations. It seems better/cleaner to keep each 'store' separately updatable. WARNING: any editing in the middle of the migration scripts (as opposite to just appending to them) has the potential of messing up updates of existing databases. As far as I can see, this one is (probably) safe, the worst that could happen is the EstateStore migration silently fail if the estate the tables are already there.
2010-04-30rename SQLiteNG to SQLite and SQLite to SQLiteLegacyJustin Clark-Casey (justincc)1-0/+0
this seems the least evil way forward since mono 2.6 and later will see increasing usage, and this only works with what was SQLiteNG MAC USERS WILL NEED TO CHANGE REFERENCES TO "OpenSim.Data.SQLite.dll" to "OpenSim.Data.SQLiteLegacy.dll" in OpenSim.ini and config-include/StandaloneCommon.ini (if using standalone) See the OpenSim.ini.example and StandaloneCommon.ini.example files for more details This commit also temporarily changes unsigned ParentEstateID values in the OpenSim.Data.Tests to signed temporarily, since the new plugin enforces creation of signed fields in the database (which is what the SQL actually specifies). And change data columns in sqlite is a pita.
2010-04-23Duplicate OpenSim.Data.SQLite into OpenSim.Data.SQLiteNG. SQLiteNG will ↵Justin Clark-Casey (justincc)1-0/+0
shortly be changed to work under mono 2.6 and above
2008-08-28Fix for Bug #2065: New check out crashes on sqlite migrationSean Dague1-0/+1
I apparently missed one drop tables statement that was actually needed when I did the cleaning to make this work for old sqlite versions.
2008-08-27get rid of the "drop if exists" lines in this old migration, as thoseSean Dague1-6/+0
tables shouldn't exist yet, and the exists keyword is relatively new in sqlite. This has been breaking a lot of people on Suse Enterprise Linux, for instance.
2008-07-18remove all the odd quoting, on the off chance this was causing someSean Dague1-90/+90
of the issue.
2008-07-18put the entire thing inside a transaction. This probably doesn'tSean Dague1-0/+4
help much, but it might.
2008-07-18fix typo in create index that caused the entire migration to fail.Sean Dague1-1/+12
put some drop table if exist clauses in here to hopefully let this migration work for people that are in an intermediary broken state right now.
2008-07-18Patch #9151Melanie Thielker1-0/+92
Makes the estate dialog fully functional. Implements all client facing functionality. Moves estate data from estate_settings.xml, which is used to provide defaults, to the region data store. Creates one estate for each region, and places the region in it. Converts all region bans to estate bans.