mirror of
https://github.com/opensim/opensim.git
synced 2026-05-18 04:45:35 +08:00
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)
8 lines
229 B
SQL
8 lines
229 B
SQL
BEGIN TRANSACTION
|
|
|
|
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
|