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

20 lines
590 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,
"title" character varying(100) NOT NULL,
"description" character varying(5000) DEFAULT '' NOT NULL,
"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")
);