mirror of
https://github.com/joomla-extensions/patchtester.git
synced 2024-12-23 03:19:00 +00:00
Correct 2.0.0 schema updates
Correct 2.0.0 schema updates so that they fit to 2.0.0 new installation and so the 3.0.0 schema updates won't fail.
This commit is contained in:
parent
b5f3246503
commit
e020605193
@ -5,7 +5,7 @@ CREATE TABLE IF NOT EXISTS `#__patchtester_pulls` (
|
||||
`description` varchar(150) NOT NULL DEFAULT '',
|
||||
`pull_url` varchar(255) NOT NULL,
|
||||
`sha` varchar(40) NOT NULL DEFAULT '',
|
||||
`branch` varchar(255) NOT NULL DEFAULT '',
|
||||
`is_rtc` tinyint(1) NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
|
@ -5,7 +5,7 @@ CREATE TABLE IF NOT EXISTS "#__patchtester_pulls" (
|
||||
"description" character varying(150) DEFAULT '' NOT NULL,
|
||||
"pull_url" character varying(255) NOT NULL,
|
||||
"sha" character varying(40) DEFAULT '' NOT NULL,
|
||||
"branch" character varying(255) DEFAULT '' NOT NULL,
|
||||
"is_rtc" smallint DEFAULT 1 NOT NULL,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
|
@ -5,7 +5,7 @@ CREATE TABLE [#__patchtester_pulls] (
|
||||
[description] [nvarchar](150) NOT NULL DEFAULT '',
|
||||
[pull_url] [nvarchar](255) NOT NULL,
|
||||
[sha] [nvarchar](40) NOT NULL DEFAULT '',
|
||||
[branch] [nvarchar](255) NOT NULL DEFAULT '',
|
||||
[is_rtc] [smallint] NOT NULL DEFAULT 1,
|
||||
CONSTRAINT [PK_#__patchtester_pulls] PRIMARY KEY CLUSTERED
|
||||
(
|
||||
[id] ASC
|
||||
|
Loading…
Reference in New Issue
Block a user