Skip to content

Commit 7aae302

Browse files
author
Aurélien TISNE
authored
TICKET 0008892: Install fails when using Postgresql (#259)
Remove the keywork 'unsigned' from PG table creation script.
1 parent 1bc1b24 commit 7aae302

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

install/sql/postgres/testlink_create_tables.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -934,8 +934,8 @@ CREATE TABLE /*prefix*/baseline_l1l2_details (
934934
"top_tsuite_id" BIGINT NOT NULL DEFAULT '0' REFERENCES /*prefix*/testsuites (id),
935935
"child_tsuite_id" BIGINT NOT NULL DEFAULT '0' REFERENCES /*prefix*/testsuites (id),
936936
"status" char(1) DEFAULT NULL,
937-
"qty" INT unsigned NOT NULL DEFAULT '0',
938-
"total_tc" INT unsigned NOT NULL DEFAULT '0',
937+
"qty" INT NOT NULL DEFAULT '0',
938+
"total_tc" INT NULL DEFAULT '0',
939939
PRIMARY KEY ("id")
940940
) ;
941941
CREATE UNIQUE INDEX /*prefix*/udx1_details

0 commit comments

Comments
 (0)