We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb8c88d commit 2837337Copy full SHA for 2837337
schema/schema.sql
@@ -42,14 +42,13 @@ CREATE TABLE "public"."dept_manager" (
42
CONSTRAINT "dept_manager_emp_no_fkey" FOREIGN KEY ("emp_no") REFERENCES "public"."employee" ("emp_no") ON DELETE CASCADE
43
);
44
45
-CREATE TABLE "public"."employee" (
+CREATE TABLE "public"."ajkdfjdlkjfa" (
46
"emp_no" serial,
47
"birth_date" date NOT NULL,
48
"first_name" text NOT NULL,
49
"last_name" text NOT NULL,
50
"gender" text NOT NULL,
51
"hire_date" date NOT NULL,
52
- CONSTRAINT "employee_pkey" PRIMARY KEY (emp_no),
53
CONSTRAINT "employee_gender_check" CHECK (gender = ANY (ARRAY['M'::text, 'F'::text]))
54
55
0 commit comments