Skip to content

Commit b299699

Browse files
remove not null
1 parent e9596f7 commit b299699

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
"last_name" text NOT NULL,
4949
"gender" text NOT NULL,
5050
"hire_date" date NOT NULL,
51-
"nickname" text NOT NULL DEFAULT '',
51+
"nickname" text,
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)