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 1bc1b24 commit 7aae302Copy full SHA for 7aae302
install/sql/postgres/testlink_create_tables.sql
@@ -934,8 +934,8 @@ CREATE TABLE /*prefix*/baseline_l1l2_details (
934
"top_tsuite_id" BIGINT NOT NULL DEFAULT '0' REFERENCES /*prefix*/testsuites (id),
935
"child_tsuite_id" BIGINT NOT NULL DEFAULT '0' REFERENCES /*prefix*/testsuites (id),
936
"status" char(1) DEFAULT NULL,
937
- "qty" INT unsigned NOT NULL DEFAULT '0',
938
- "total_tc" INT unsigned NOT NULL DEFAULT '0',
+ "qty" INT NOT NULL DEFAULT '0',
+ "total_tc" INT NULL DEFAULT '0',
939
PRIMARY KEY ("id")
940
) ;
941
CREATE UNIQUE INDEX /*prefix*/udx1_details
0 commit comments