up vote 2 down vote favorite
share [g+] share [fb]

I'm trying to write a migration that adds a LONGBLOB column to a table in a MySQL database. I'd like to use LONGBLOB instead of BLOB so that I can store more data in the binary column. The problem is that it adds a BLOB column even though I specify a larger size.

Here's the line I'm using to add the column:

add_column :db_files, :data, :binary, :null => false, :size => 1.megabyte

Am I doing this incorrectly?

link|improve this question

feedback

1 Answer

up vote 8 down vote accepted

The following will create a MEDIUMBLOB field. Use 16.megabyte to go to a LONGBLOB.

def self.up
  create_table "blob_test", :force => true do |t|
    t.column :data, :binary, :limit => 10.megabyte
  end
end

Reference from Ryan Heath's blog.

link|improve this answer
FYI, altering a :binary column in attempting to increase its size (changing a regular BLOB to a LONGBLOB) does not seem to work, if done via the Rails migration API (as of Rails 2.3.5). – Chris W. Apr 7 '11 at 15:41
Actually, that may not be true... I think I may have been using the wrong parameter -- :size instead of :limit... But I went ahead and used raw SQL via execute. Note that, the original poster used the latter name (for specifying 1.megabyte), while :limit seems to be the correct parameter (as given in the answer above). – Chris W. Apr 7 '11 at 16:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.