Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions install/sql/postgres/testlink_create_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -934,8 +934,8 @@ CREATE TABLE /*prefix*/baseline_l1l2_details (
"top_tsuite_id" BIGINT NOT NULL DEFAULT '0' REFERENCES /*prefix*/testsuites (id),
"child_tsuite_id" BIGINT NOT NULL DEFAULT '0' REFERENCES /*prefix*/testsuites (id),
"status" char(1) DEFAULT NULL,
"qty" INT unsigned NOT NULL DEFAULT '0',
"total_tc" INT unsigned NOT NULL DEFAULT '0',
"qty" INT NOT NULL DEFAULT '0',
"total_tc" INT NULL DEFAULT '0',
PRIMARY KEY ("id")
) ;
CREATE UNIQUE INDEX /*prefix*/udx1_details
Expand Down