mirror of
https://github.com/opensim/opensim.git
synced 2026-07-08 05:36:27 +08:00
From: Chris Yeoh <yeohc@au1.ibm.com>
Attached is a patch that changes the oar file saving of creation date/time to an integer instead of a string. I did this after justincc emailed me saying there is a problem with internationalisation doing it the old way and I said I'd fix it. Its been tested with MySQL and I've made the changes for MSSQL but that hasn't been well tested.
This commit is contained in:
7
OpenSim/Data/MySQL/Resources/031_RegionStore.sql
Normal file
7
OpenSim/Data/MySQL/Resources/031_RegionStore.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
BEGIN;
|
||||
|
||||
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;
|
||||
|
||||
COMMIT;
|
||||
Reference in New Issue
Block a user