fix: remove default null definition for name column in tabSeries

for postgres
This commit is contained in:
phot0n 2022-04-25 20:13:10 +05:30
parent 20fc654648
commit 4418c03237

View file

@ -240,7 +240,7 @@ CREATE TABLE "tabDocType" (
DROP TABLE IF EXISTS "tabSeries";
CREATE TABLE "tabSeries" (
"name" varchar(100) DEFAULT NULL,
"name" varchar(100),
"current" bigint NOT NULL DEFAULT 0,
PRIMARY KEY ("name")
) ;