From b4c5177de9e9c3658182cc7242f3366de4e1b49b Mon Sep 17 00:00:00 2001 From: atisne Date: Mon, 30 Mar 2020 16:17:20 +0200 Subject: [PATCH] TICKET 0008892: Install fails when using Postgresql Remove the keywork 'unsigned' from PG table creation script. --- install/sql/postgres/testlink_create_tables.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/sql/postgres/testlink_create_tables.sql b/install/sql/postgres/testlink_create_tables.sql index 80b2da4b56..35e0120ee5 100644 --- a/install/sql/postgres/testlink_create_tables.sql +++ b/install/sql/postgres/testlink_create_tables.sql @@ -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