generated from ctc-uci/npo-template-merged
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from ctc-uci/9-create-rooms-and-events-tables
#9 added rooms and events table
- Loading branch information
Showing
2 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
CREATE TABLE events ( | ||
id INT PRIMARY KEY UNIQUE NOT NULL DEFAULT nextval('event_id_seq'), | ||
name VARCHAR(256) NOT NULL, | ||
description VARCHAR(256), | ||
archived BOOL NOT NULL DEFAULT False | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
CREATE TABLE rooms ( | ||
id INT PRIMARY KEY UNIQUE NOT NULL DEFAULT nextval('room_id_seq'), | ||
name VARCHAR(256) NOT NULL, | ||
description VARCHAR(256), | ||
rate NUMERIC NOT NULL | ||
); |