Fix incorrect mysql column type (requires AR test DB to be rebuilt) (closes #4299)

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3943 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jamis Buck 2006-03-18 20:33:00 +00:00
parent 69fbdb9afb
commit 3257a4b9b0

@ -32,7 +32,7 @@ CREATE TABLE `topics` (
`bonus_time` time default NULL,
`last_read` date default NULL,
`content` text,
`approved` tinyint default 1,
`approved` tinyint(1) default 1,
`replies_count` int(11) default 0,
`parent_id` int(11) default NULL,
`type` varchar(50) default NULL,