13 lines
315 B
MySQL
Raw Normal View History

2024-08-31 02:13:52 -05:00
-- Add migration script here
CREATE TABLE waterdata(
date date NOT NULL,
PRIMARY KEY (date),
water_level float,
surface_area float,
reservoir_storage float NOT NULL,
conservation_storage float NOT NULL,
percent_full float NOT NULL,
conservation_capacity float,
dead_pool_capacity float NOT NULL
)