33
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-11-10 15:21:01 +00:00
patchtester/administrator/components/com_patchtester/install/sql/mysql/install.sql
Niels van der Veer eab31b00f7 Remove joomlacode references
Since we use the new tracker, the references to joomlacode.org are no
longer necessary
2014-09-01 18:13:09 +02:00

21 lines
654 B
SQL

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