Skip to content

Commit

Permalink
Fixed #19418: Postgres issue with ezcomment table
Browse files Browse the repository at this point in the history
  • Loading branch information
dpobel committed Jul 11, 2012
1 parent 808d954 commit 4c80b1c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
Expand Up @@ -83,7 +83,7 @@ $schema = array (
),
'text' =>
array (
'type' => 'text',
'type' => 'longtext',
'not_null' => '1',
'default' => false,
),
Expand Down Expand Up @@ -331,4 +331,4 @@ $schema = array (
),
);

?>
?>
Expand Up @@ -11,7 +11,7 @@ CREATE TABLE IF NOT EXISTS `ezcomment` (
`name` varchar(255) NOT NULL,
`email` varchar(75) NOT NULL,
`url` varchar(255) DEFAULT NULL,
`text` text NOT NULL,
`text` longtext NOT NULL,
`status` int(11) NOT NULL,
`title` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`),
Expand Down
@@ -0,0 +1,4 @@

-- See http://issues.ez.no/19418
ALTER TABLE ezcomment CHANGE COLUMN text text longtext NOT NULL;

0 comments on commit 4c80b1c

Please sign in to comment.