fix: remove default null definition for name column in tabSeries
for postgres
This commit is contained in:
parent
20fc654648
commit
4418c03237
1 changed files with 1 additions and 1 deletions
|
|
@ -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")
|
||||
) ;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue