File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 11COMMENT ON SCHEMA "public" IS ' standard public schema' ;
22
3+ CREATE TABLE "public "." ajtkdfjklsa" (
4+ " id" serial
5+ );
6+
37CREATE TABLE "public "." audit" (
48 " id" serial ,
59 " operation" text NOT NULL ,
@@ -42,13 +46,14 @@ CREATE TABLE "public"."dept_manager" (
4246 CONSTRAINT " dept_manager_emp_no_fkey" FOREIGN KEY (" emp_no" ) REFERENCES " public" ." employee" (" emp_no" ) ON DELETE CASCADE
4347);
4448
45- CREATE TABLE "public "." ajkdfjdlkjfa " (
49+ CREATE TABLE "public "." employee " (
4650 " emp_no" serial ,
4751 " birth_date" date NOT NULL ,
4852 " first_name" text NOT NULL ,
4953 " last_name" text NOT NULL ,
5054 " gender" text NOT NULL ,
5155 " hire_date" date NOT NULL ,
56+ CONSTRAINT " employee_pkey" PRIMARY KEY (emp_no),
5257 CONSTRAINT " employee_gender_check" CHECK (gender = ANY (ARRAY[' M' ::text , ' F' ::text ]))
5358);
5459
You can’t perform that action at this time.
0 commit comments