mirror of
https://github.com/joomla-extensions/patchtester.git
synced 2025-02-03 12:28:29 +00:00
eab31b00f7
Since we use the new tracker, the references to joomlacode.org are no longer necessary
21 lines
618 B
SQL
21 lines
618 B
SQL
CREATE TABLE IF NOT EXISTS "#__patchtester_pulls" (
|
|
"id" serial NOT NULL,
|
|
"pull_id" bigint NOT NULL,
|
|
"title" character varying(100) NOT NULL,
|
|
"description" character varying(5000) DEFAULT '' NOT NULL,
|
|
"pull_url" character varying(255) NOT NULL,
|
|
PRIMARY KEY ("id")
|
|
);
|
|
|
|
CREATE TABLE "#__patchtester_tests" (
|
|
"id" serial NOT NULL,
|
|
"pull_id" bigint NOT NULL,
|
|
"data" text NOT NULL,
|
|
"patched_by" bigint NOT NULL,
|
|
"applied" bigint NOT NULL,
|
|
"applied_version" character varying(25) NOT NULL,
|
|
"rating" bigint NOT NULL,
|
|
"comments" character varying(3000) DEFAULT '' NOT NULL,
|
|
PRIMARY KEY ("id")
|
|
);
|