blob: 15d548f377c392f1e3fae75bc09432ac62733aeb (
plain)
1
2
3
4
5
6
7
8
9
|
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
|