Merge pull request #221 from richard67/fix-schema-updates-1

Correct 2.0.0 schema updates
This commit is contained in:
Michael Babker 2019-05-19 11:34:37 -05:00 committed by GitHub
commit 241cc6b29a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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")
);

View File

@ -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