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.
- Loading branch information
Showing
1 changed file
with
8 additions
and
6 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 |
---|---|---|
@@ -1,6 +1,8 @@ | ||
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 | ||
); | ||
CREATE TABLE IF NOT EXISTS public.rooms | ||
( | ||
id integer NOT NULL GENERATED ALWAYS AS IDENTITY ( INCREMENT 1 START 1 MINVALUE 1 MAXVALUE 2147483647 CACHE 1 ), | ||
name character varying(256) COLLATE pg_catalog."default" NOT NULL, | ||
description character varying(256) COLLATE pg_catalog."default", | ||
rate numeric NOT NULL, | ||
CONSTRAINT room_pkey PRIMARY KEY (id) | ||
) |