college/Summer-2024/CS-3443/LakeWatch/LakeWatchAPI/migrations/20240729212726_water_data.sql

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
)