mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
Thanks StrawberryFride, for a patch that fixes MSSQL migration:
Minor tweak to a region migration SQL script for the OAR DateTime field - SQL Server syntax slightly different from MySQL (and there is no unsigned in MSSQL, sadly)
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
BEGIN TRANSACTION
|
||||
|
||||
ALTER TABLE regionsettings DROP COLUMN loaded_creation_date;
|
||||
ALTER TABLE regionsettings DROP COLUMN loaded_creation_time;
|
||||
ALTER TABLE regionsettings ADD COLUMN loaded_creation_datetime int unsigned NOT NULL default 0;
|
||||
ALTER TABLE regionsettings DROP COLUMN loaded_creation_date
|
||||
ALTER TABLE regionsettings DROP COLUMN loaded_creation_time
|
||||
ALTER TABLE regionsettings ADD loaded_creation_datetime int NOT NULL default 0
|
||||
|
||||
COMMIT
|
||||
|
||||
Reference in New Issue
Block a user