You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
325 B
7 lines
325 B
CREATE TABLE "users_table" (
|
|
"id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "users_table_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1),
|
|
"name" varchar NOT NULL,
|
|
"age" integer NOT NULL,
|
|
"email" varchar NOT NULL,
|
|
CONSTRAINT "users_table_email_unique" UNIQUE("email")
|
|
);
|
|
|