We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5eb3804 commit 3db82d3Copy full SHA for 3db82d3
schema/schema.sql
@@ -48,7 +48,7 @@ CREATE TABLE "public"."employee" (
48
"first_name" text NOT NULL,
49
"last_name" text NOT NULL,
50
"gender" text NOT NULL,
51
- "hire_date" date,
+ "hire_date" date NOT NUL,
52
CONSTRAINT "employee_pkey" PRIMARY KEY (emp_no),
53
CONSTRAINT "employee_gender_check" CHECK (gender = ANY (ARRAY['M'::text, 'F'::text]))
54
);
0 commit comments