31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-09-20 16:59:02 +00:00
patchtester/administrator/components/com_patchtester/install/sql/mysql/install.sql

20 lines
625 B
MySQL
Raw Normal View History

CREATE TABLE IF NOT EXISTS `#__patchtester_pulls` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`pull_id` int(11) NOT NULL,
`title` varchar(100) NOT NULL,
`description` varchar(5000) NOT NULL DEFAULT '',
`pull_url` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8;
2012-06-12 18:42:45 +00:00
CREATE TABLE IF NOT EXISTS `#__patchtester_tests` (
2011-10-11 13:02:57 +00:00
`id` int(11) NOT NULL AUTO_INCREMENT,
`pull_id` int(11) NOT NULL,
2012-06-12 18:42:45 +00:00
`data` longtext NOT NULL,
2011-10-11 13:02:57 +00:00
`patched_by` int(11) NOT NULL,
`applied` int(11) NOT NULL,
`applied_version` varchar(25) NOT NULL,
`comments` varchar(3000) NOT NULL,
PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8;