33
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2025-02-03 04:18:25 +00:00

26 lines
812 B
MySQL
Raw Normal View History

CREATE TABLE [#__patchtester_pulls] (
2014-05-04 16:55:06 -05:00
[id] [bigint] IDENTITY(1,1) NOT NULL,
[pull_id] [bigint] NOT NULL,
[title] [nvarchar](100) NOT NULL,
[description] [nvarchar](4000) NOT NULL DEFAULT '',
2014-05-04 16:55:06 -05:00
[pull_url] [nvarchar](255) NOT NULL,
CONSTRAINT [PK_#__patchtester_pulls] PRIMARY KEY CLUSTERED
(
[id] ASC
) WITH (STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF)
);
2013-08-12 16:05:52 -05:00
CREATE TABLE [#__patchtester_tests](
2014-05-04 16:55:06 -05:00
[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,
[comments] [nvarchar](255) NOT NULL DEFAULT '',
2013-08-12 16:05:52 -05:00
CONSTRAINT [PK_#__patchtester_tests] PRIMARY KEY CLUSTERED
(
2014-05-04 16:55:06 -05:00
[id] ASC
2013-08-12 16:05:52 -05:00
) WITH (STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF)
);