We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d8c2c8 commit 5ded3c7Copy full SHA for 5ded3c7
1 file changed
install/sql/postgres/testlink_create_tables.sql
@@ -804,6 +804,24 @@ CREATE TABLE /*prefix*/testproject_issuetracker
804
);
805
806
807
+CREATE TABLE /*prefix*/codetrackers
808
+(
809
+ "id" BIGSERIAL NOT NULL ,
810
+ "name" VARCHAR(100) NOT NULL,
811
+ "type" INTEGER NOT NULL DEFAULT '0',
812
+ "cfg" TEXT,
813
+ PRIMARY KEY ("id")
814
+);
815
+CREATE UNIQUE INDEX /*prefix*/codetrackers_uidx1 ON /*prefix*/codetrackers ("name");
816
+
817
818
+CREATE TABLE /*prefix*/testproject_codetracker
819
820
+ "testproject_id" BIGINT NOT NULL DEFAULT '0' REFERENCES /*prefix*/testprojects (id) ON DELETE CASCADE,
821
+ "codetracker_id" BIGINT NOT NULL DEFAULT '0' REFERENCES /*prefix*/codetrackers (id) ON DELETE CASCADE,
822
+ PRIMARY KEY ("testproject_id")
823
824
825
826
CREATE TABLE /*prefix*/reqmgrsystems
827
(
0 commit comments