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 8b57615 commit 9454ddfCopy full SHA for 9454ddf
schema/schema.sql
@@ -50,6 +50,7 @@ CREATE TABLE "public"."employee" (
50
"last_name" text NOT NULL,
51
"gender" text NOT NULL,
52
"hire_date" date NOT NULL,
53
+ "nickname" text NOT NULL DEFAULT '',
54
CONSTRAINT "employee_pkey" PRIMARY KEY (emp_no),
55
CONSTRAINT "employee_gender_check" CHECK (gender = ANY (ARRAY['M'::text, 'F'::text]))
56
);
0 commit comments