33
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2025-01-26 16:48:29 +00:00

20 lines
589 B
MySQL
Raw Normal View History

2014-05-04 16:55:06 -05:00
CREATE TABLE IF NOT EXISTS "#__patchtester_pulls" (
"id" serial NOT NULL,
"pull_id" bigint NOT NULL,
2015-05-09 13:08:34 -04:00
"title" character varying(200) NOT NULL,
"description" character varying(150) DEFAULT '' NOT NULL,
2014-05-04 16:55:06 -05:00
"pull_url" character varying(255) NOT NULL,
PRIMARY KEY ("id")
);
2013-08-12 16:05:52 -05:00
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,
"comments" character varying(3000) DEFAULT '' NOT NULL,
PRIMARY KEY ("id")
);