foodsoft/db/migrate/025_extend_comments.rb

10 lines
223 B
Ruby
Raw Permalink Normal View History

class ExtendComments < ActiveRecord::Migration[4.2]
2009-01-06 11:49:19 +01:00
def self.up
change_column :comments, :comment, :text, :default => ""
end
def self.down
change_column :comments, :comment, :string, :default => ""
end
end