9 lines
385 B
SQL
9 lines
385 B
SQL
-- The solar model (environment modifier) changes the SunSoak reading just
|
|
-- as much as the profile does, so a reading needs both stored to mean
|
|
-- anything when filtering the journal/graph by "what's currently selected".
|
|
|
|
ALTER TABLE journal_entries
|
|
ADD COLUMN solar_env VARCHAR(16) NULL AFTER profile;
|
|
|
|
INSERT IGNORE INTO schema_migrations (version) VALUES ('003_add_solar_env');
|