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

20 lines
624 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,
2015-05-09 13:08:34 -04:00
`title` varchar(200) NOT NULL,
`description` varchar(150) NOT NULL DEFAULT '',
`pull_url` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8;
2012-06-12 13:42:45 -05:00
CREATE TABLE IF NOT EXISTS `#__patchtester_tests` (
2011-10-11 09:02:57 -04:00
`id` int(11) NOT NULL AUTO_INCREMENT,
`pull_id` int(11) NOT NULL,
2012-06-12 13:42:45 -05:00
`data` longtext NOT NULL,
2011-10-11 09:02:57 -04: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;