aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/033_add_prominence.rb
blob: e192044b277cd7c735222a6e2409c868cb0deef3 (plain)
1
2
3
4
5
6
7
8
9
10
# -*- encoding : utf-8 -*-
class AddProminence < ActiveRecord::Migration
    def self.up
        add_column :info_requests, :prominence, :string, :null => false, :default => 'normal'
    end

    def self.down
        remove_column :info_requests, :prominence
    end
end