33
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2025-02-04 04:48:25 +00:00

12 lines
366 B
MySQL
Raw Normal View History

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,
`rating` int(11) NOT NULL,
`comments` varchar(3000) NOT NULL,
PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8;