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

21 lines
774 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 17:08:34 +00:00
`title` varchar(200) NOT NULL,
`description` varchar(150) NOT NULL DEFAULT '',
`pull_url` varchar(255) NOT NULL,
`sha` varchar(40) NOT NULL DEFAULT '',
`is_rtc` tinyint(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci;
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,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci;