31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-09-30 13:19:04 +00:00
patchtester/administrator/components/com_patchtester/install/sql/postgresql/install.sql

20 lines
582 B
MySQL
Raw Normal View History

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