Skip to content

Commit fb8c88d

Browse files
Fix typo in hire_date column definition
1 parent 3db82d3 commit fb8c88d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

schema/schema.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ CREATE TABLE "public"."employee" (
4848
"first_name" text NOT NULL,
4949
"last_name" text NOT NULL,
5050
"gender" text NOT NULL,
51-
"hire_date" date NOT NUL,
51+
"hire_date" date NOT NULL,
5252
CONSTRAINT "employee_pkey" PRIMARY KEY (emp_no),
5353
CONSTRAINT "employee_gender_check" CHECK (gender = ANY (ARRAY['M'::text, 'F'::text]))
5454
);

0 commit comments

Comments
 (0)