31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-05-28 19:40:47 +00:00

Remove the rating column (Fix #41)

This commit is contained in:
Michael Babker 2014-10-17 03:10:42 -04:00
parent 63dac07c12
commit 6a6f155285
3 changed files with 0 additions and 3 deletions

View File

@ -14,7 +14,6 @@ CREATE TABLE IF NOT EXISTS `#__patchtester_tests` (
`patched_by` int(11) NOT NULL,
`applied` int(11) NOT NULL,
`applied_version` varchar(25) NOT NULL,
`rating` int(11) NOT NULL,
`comments` varchar(3000) NOT NULL,
PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8;

View File

@ -14,7 +14,6 @@ CREATE TABLE "#__patchtester_tests" (
"patched_by" bigint NOT NULL,
"applied" bigint NOT NULL,
"applied_version" character varying(25) NOT NULL,
"rating" bigint NOT NULL,
"comments" character varying(3000) DEFAULT '' NOT NULL,
PRIMARY KEY ("id")
);

View File

@ -17,7 +17,6 @@ CREATE TABLE [#__patchtester_tests](
[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
(