mirror of
https://github.com/joomla-extensions/patchtester.git
synced 2024-12-23 03:19:00 +00:00
Remove the rating column (Fix #41)
This commit is contained in:
parent
63dac07c12
commit
6a6f155285
@ -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;
|
||||
|
@ -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")
|
||||
);
|
||||
|
@ -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
|
||||
(
|
||||
|
Loading…
Reference in New Issue
Block a user