-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix for graph w/ language select * fix for timezone issue w/ graphs * fix for timezone issue w/ graphs
- Loading branch information
Showing
7 changed files
with
103 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.1.13 | ||
0.1.14 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
DELETE FROM plant_status WHERE status, = 'Germinating'; | ||
DELETE FROM plant_status WHERE status, = 'Planted'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
alter table plant_status add column status_order INTEGER NOT NULL DEFAULT 0; | ||
INSERT INTO plant_status (status, active, status_order) VALUES ('Germinating', 1, 1); | ||
INSERT INTO plant_status (status, active, status_order) VALUES ('Planted', 1, 2); | ||
UPDATE plant_status SET status_order = 3 WHERE status = 'Seedling'; | ||
UPDATE plant_status SET status_order = 4 WHERE status = 'Veg'; | ||
UPDATE plant_status SET status_order = 5 WHERE status = 'Flower'; | ||
UPDATE plant_status SET status_order = 6 WHERE status = 'Drying'; | ||
UPDATE plant_status SET status_order = 7 WHERE status = 'Curing'; | ||
UPDATE plant_status SET status_order = 8 WHERE status = 'Success'; | ||
UPDATE plant_status SET status_order = 9 WHERE status = 'Dead'; | ||
|
||
UPDATE plant_status SET active = 0 WHERE status = 'Drying'; | ||
UPDATE plant_status SET active = 0 WHERE status = 'Curing'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters