socialforge/db/migrate/20140730024419_update_conte...

10 lines
233 B
Ruby

class UpdateContestnotificationsDescription < ActiveRecord::Migration
def up
change_column :contestnotifications, :description, :text
end
def down
change_column :contestnotifications, :description, :string
end
end