goodwill
2007-Dec-01 16:09 UTC
newbie question: issue on creating blob field on mysql 5.x for windows
I tried to do a migration task as follows:
lass CreateAttachmentBlob < ActiveRecord::Migration
def self.up
add_column :posts, :attachment_thumbnail , :binary, :null=>true,
:limit=>0.5.megabyte
end
def self.down
remove_column :posts, :attachment_thumbnail
end
end
when I do rake migrate, the following error occurred:
Mysql::Error: #42000You have an error in your SQL syntax; check the
manual that
corresponds to your MySQL server version for the right syntax to use
near ''52428
8.0)'' at line 1: ALTER TABLE posts ADD `attachment_thumbnail`
blob(524288.0)
Anyone can tell me what happened? I am using rails 1.2.6 now on ruby
1.8.6 and mysql 5.0.45 GPL.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ruby on Rails: Talk" group.
To post to this group, send email to
rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---