foodsoft/db/migrate/025_extend_comments.rb
2020-09-05 14:40:11 +02:00

9 lines
223 B
Ruby

class ExtendComments < ActiveRecord::Migration[4.2]
def self.up
change_column :comments, :comment, :text, :default => ""
end
def self.down
change_column :comments, :comment, :string, :default => ""
end
end