mirror of
https://github.com/joomla-extensions/patchtester.git
synced 2024-12-23 03:19:00 +00:00
Cleanup the SQL files #234
This commit is contained in:
parent
ab56101511
commit
d2789bbca4
@ -1,3 +1,2 @@
|
||||
DROP TABLE IF EXISTS `#__patchtester_pulls`;
|
||||
DROP TABLE IF EXISTS `#__patchtester_tests`;
|
||||
DROP TABLE IF EXISTS `#__patchtester_chain`;
|
||||
|
@ -19,10 +19,3 @@ CREATE TABLE IF NOT EXISTS "#__patchtester_tests" (
|
||||
"applied_version" character varying(25) NOT NULL,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS "#__patchtester_chain" (
|
||||
"id" serial NOT NULL,
|
||||
"insert_id" bigint NOT NULL,
|
||||
"pull_id" bigint NOT NULL,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
@ -1,3 +1,2 @@
|
||||
DROP TABLE IF EXISTS "#__patchtester_pulls";
|
||||
DROP TABLE IF EXISTS "#__patchtester_tests";
|
||||
DROP TABLE IF EXISTS "#__patchtester_chain";
|
||||
|
@ -1,6 +0,0 @@
|
||||
CREATE TABLE IF NOT EXISTS `#__patchtester_chain` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`insert_id` int(11) NOT NULL,
|
||||
`pull_id` int(11) NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci;
|
@ -1,6 +0,0 @@
|
||||
CREATE TABLE IF NOT EXISTS "#__patchtester_chain" (
|
||||
"id" serial NOT NULL,
|
||||
"insert_id" bigint NOT NULL,
|
||||
"pull_id" bigint NOT NULL,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
Loading…
Reference in New Issue
Block a user