aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/047_add_calculated_state.rb
blob: ad77b366d96ba344cc2afdb63da7b91a7667e655 (plain)
1
2
3
4
5
6
7
8
9
10
# -*- encoding : utf-8 -*-
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