We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9596f7 commit b299699Copy full SHA for b299699
schema/schema.sql
@@ -48,7 +48,7 @@ CREATE TABLE "public"."employee" (
48
"last_name" text NOT NULL,
49
"gender" text NOT NULL,
50
"hire_date" date NOT NULL,
51
- "nickname" text NOT NULL DEFAULT '',
+ "nickname" text,
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