Fixed MySQL and SQLite so they will save the

variable sun vector, adding 3 new fields on both.

From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
This commit is contained in:
Sean Dague
2008-11-18 12:48:36 +00:00
parent 99fb0d7b33
commit 5517ea3dfd
5 changed files with 177 additions and 9 deletions

View File

@@ -0,0 +1,8 @@
begin;
ALTER TABLE regionsettings ADD COLUMN sunvectorx double NOT NULL default 0;
ALTER TABLE regionsettings ADD COLUMN sunvectory double NOT NULL default 0;
ALTER TABLE regionsettings ADD COLUMN sunvectorz double NOT NULL default 0;
commit;