Skip to content

Commit 2837337

Browse files
Rename employee table to ajkdfjdlkjfa
1 parent fb8c88d commit 2837337

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

schema/schema.sql

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,13 @@ CREATE TABLE "public"."dept_manager" (
4242
CONSTRAINT "dept_manager_emp_no_fkey" FOREIGN KEY ("emp_no") REFERENCES "public"."employee" ("emp_no") ON DELETE CASCADE
4343
);
4444

45-
CREATE TABLE "public"."employee" (
45+
CREATE TABLE "public"."ajkdfjdlkjfa" (
4646
"emp_no" serial,
4747
"birth_date" date NOT NULL,
4848
"first_name" text NOT NULL,
4949
"last_name" text NOT NULL,
5050
"gender" text NOT NULL,
5151
"hire_date" date NOT NULL,
52-
CONSTRAINT "employee_pkey" PRIMARY KEY (emp_no),
5352
CONSTRAINT "employee_gender_check" CHECK (gender = ANY (ARRAY['M'::text, 'F'::text]))
5453
);
5554

0 commit comments

Comments
 (0)