mirror of
https://github.com/joomla-extensions/patchtester.git
synced 2024-12-23 11:29:00 +00:00
Merge branch 'master' into namespace
This commit is contained in:
commit
eb42ed6b9c
@ -1 +1,2 @@
|
|||||||
|
DROP TABLE IF EXISTS `#__patchtester_pulls`;
|
||||||
DROP TABLE IF EXISTS `#__patchtester_tests`;
|
DROP TABLE IF EXISTS `#__patchtester_tests`;
|
||||||
|
@ -1,3 +1,13 @@
|
|||||||
|
CREATE TABLE IF NOT EXISTS "#__patchtester_pulls" (
|
||||||
|
"id" serial NOT NULL,
|
||||||
|
"pull_id" bigint NOT NULL,
|
||||||
|
"title" character varying(100) NOT NULL,
|
||||||
|
"description" character varying(5000) DEFAULT '' NOT NULL,
|
||||||
|
"pull_url" character varying(255) NOT NULL,
|
||||||
|
"joomlacode_id" character varying(255) DEFAULT '' NOT NULL,
|
||||||
|
PRIMARY KEY ("id")
|
||||||
|
);
|
||||||
|
|
||||||
CREATE TABLE "#__patchtester_tests" (
|
CREATE TABLE "#__patchtester_tests" (
|
||||||
"id" serial NOT NULL,
|
"id" serial NOT NULL,
|
||||||
"pull_id" bigint NOT NULL,
|
"pull_id" bigint NOT NULL,
|
||||||
|
@ -1 +1,2 @@
|
|||||||
|
DROP TABLE IF EXISTS "#__patchtester_pulls";
|
||||||
DROP TABLE IF EXISTS "#__patchtester_tests";
|
DROP TABLE IF EXISTS "#__patchtester_tests";
|
||||||
|
@ -1,14 +1,27 @@
|
|||||||
CREATE TABLE [#__patchtester_tests](
|
CREATE TABLE IF NOT EXISTS [#__patchtester_pulls] (
|
||||||
[id] [bigint] IDENTITY(1,1) NOT NULL,
|
[id] [bigint] IDENTITY(1,1) NOT NULL,
|
||||||
[pull_id] [bigint] NOT NULL,
|
[pull_id] [bigint] NOT NULL,
|
||||||
[data] [nvarchar](MAX) NULL,
|
[title] [nvarchar](100) NOT NULL,
|
||||||
[patched_by] [bigint] NOT NULL,
|
[description] [nvarchar](5000) NOT NULL DEFAULT '',
|
||||||
[applied] [bigint] NOT NULL,
|
[pull_url] [nvarchar](255) NOT NULL,
|
||||||
[applied_version] [nvarchar](25) NOT NULL,
|
[joomlacode_id] [nvarchar](255) NOT NULL DEFAULT '',
|
||||||
[rating] [bigint] NOT NULL,
|
CONSTRAINT [PK_#__patchtester_pulls] PRIMARY KEY CLUSTERED
|
||||||
[comments] [nvarchar](255) NOT NULL DEFAULT '',
|
|
||||||
CONSTRAINT [PK_#__patchtester_tests] PRIMARY KEY CLUSTERED
|
|
||||||
(
|
(
|
||||||
[id] ASC
|
[id] ASC
|
||||||
|
) WITH (STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF)
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE [#__patchtester_tests](
|
||||||
|
[id] [bigint] IDENTITY(1,1) NOT NULL,
|
||||||
|
[pull_id] [bigint] NOT NULL,
|
||||||
|
[data] [nvarchar](MAX) NULL,
|
||||||
|
[patched_by] [bigint] NOT NULL,
|
||||||
|
[applied] [bigint] NOT NULL,
|
||||||
|
[applied_version] [nvarchar](25) NOT NULL,
|
||||||
|
[rating] [bigint] NOT NULL,
|
||||||
|
[comments] [nvarchar](255) NOT NULL DEFAULT '',
|
||||||
|
CONSTRAINT [PK_#__patchtester_tests] PRIMARY KEY CLUSTERED
|
||||||
|
(
|
||||||
|
[id] ASC
|
||||||
) WITH (STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF)
|
) WITH (STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF)
|
||||||
);
|
);
|
||||||
|
@ -1 +1,2 @@
|
|||||||
|
DROP TABLE [#__patchtester_pulls];
|
||||||
DROP TABLE [#__patchtester_tests];
|
DROP TABLE [#__patchtester_tests];
|
||||||
|
Loading…
Reference in New Issue
Block a user