Skip to content

Commit

Permalink
Schema for Day table
Browse files Browse the repository at this point in the history
  • Loading branch information
h0ethan04 committed Feb 10, 2024
1 parent 2434108 commit b52aa5b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions server/schema/day.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
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,
location VARCHAR( 256 ) NOT NULL,
notes VARCHAR( 250 )
);

0 comments on commit b52aa5b

Please sign in to comment.