aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/047_add_calculated_state.rb
blob: 5e5b93512e2a546f02d45cc4817589b8bf3e5290 (plain)
1
2
3
4
5
6
7
8
9
class AddCalculatedState < ActiveRecord::Migration
    def self.up
        add_column :info_request_events, :calculated_state, :string, :default => nil
    end

    def self.down
        remove_column :info_request_events, :calculated_state
    end
end