31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-05-31 12:50:47 +00:00

remove drop tables

This commit is contained in:
andrepereiradasilva 2016-03-02 13:38:02 +00:00
parent e6ca931673
commit 7d03379c39

View File

@ -1,5 +1,3 @@
DROP TABLE IF EXISTS `#__patchtester_pulls`;
CREATE TABLE IF NOT EXISTS `#__patchtester_pulls` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`pull_id` int(11) NOT NULL,
@ -10,8 +8,6 @@ CREATE TABLE IF NOT EXISTS `#__patchtester_pulls` (
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci;
DROP TABLE IF EXISTS `#__patchtester_tests`;
CREATE TABLE IF NOT EXISTS `#__patchtester_tests` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`pull_id` int(11) NOT NULL,