Skip to content

Commit

Permalink
updated schema to match db model
Browse files Browse the repository at this point in the history
  • Loading branch information
h0ethan04 committed Feb 13, 2024
1 parent b52aa5b commit 50b3ba1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/schema/day.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ DROP TABLE IF EXISTS day;
CREATE TABLE IF NOT EXISTS day (
id serial PRIMARY KEY,
event_date DATE NOT NULL,
start_time TIMESTAMP NOT NULL,
end_time TIMESTAMP NOT NULL,
start_time TIME NOT NULL,
end_time TIME NOT NULL,
location VARCHAR( 256 ) NOT NULL,
notes VARCHAR( 250 )
);

0 comments on commit 50b3ba1

Please sign in to comment.