33
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2025-04-06 14:31:51 +00:00
2012-06-12 11:44:48 -05:00

12 lines
350 B
SQL

CREATE TABLE IF NOT EXISTS `#__tests` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`pull_id` int(11) NOT NULL,
`data` text NOT NULL,
`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;