NOT NULL constraint without default and INSERT does not provide one

This commit is contained in:
Habeas Codice 2016-07-11 10:55:42 -07:00
parent ad83825d4f
commit 983ccef87c

View File

@ -1052,7 +1052,7 @@ create index "reg_uid" on register ("uid");
CREATE TABLE "session" (
"id" serial,
"sid" text NOT NULL,
"sess_data" text NOT NULL,
"sess_data" text NOT NULL DEFAULT '',
"expire" numeric(20) NOT NULL,
PRIMARY KEY ("id")
);