Change event.info db column type from varchar(65535) to text

git-svn-id: file:///home/svn/framework3/trunk@9434 4d416f70-5f16-0410-b530-b9f4589650da
unstable
Mike Smith 2010-06-05 00:33:31 +00:00
parent d655521c93
commit 0de01754ff
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
class EnlargeEventInfo < ActiveRecord::Migration
def self.up
change_column :events, :info, :text
end
def self.down
change_column :events, :info, :string, :limit => 65535
end
end