aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20151114112242_change_description_to_text.refinery_banners.rb
blob: 872b9422e681c35a616d589b58884ec8fc0fd6a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# This migration comes from refinery_banners (originally 3)
class ChangeDescriptionToText < ActiveRecord::Migration
  def self.up
    change_column :refinery_banners, :description, :text
  end

  def self.down
    change_column :refinery_banners, :description, :string
  end
end