Change event.info db column type from varchar(65535) to text
git-svn-id: file:///home/svn/framework3/trunk@9434 4d416f70-5f16-0410-b530-b9f4589650daunstable
parent
d655521c93
commit
0de01754ff
|
@ -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
|
||||
|
Loading…
Reference in New Issue