aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/055_stop_new_responses.rb
blob: dce034b95aea3a6cef9edbb8ff8986303567673d (plain)
1
2
3
4
5
6
7
8
9
10
# -*- encoding : utf-8 -*-
class StopNewResponses < ActiveRecord::Migration
    def self.up
        add_column :info_requests, :stop_new_responses, :boolean, :default => false, :null => false
    end

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