13 lines
315 B
SQL

-- 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
)