aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/070_sent_are_waiting_response.rb
blob: af66705b5eeb01e82e3259b37ff83c0c8c4e2b18 (plain)
1
2
3
4
5
6
7
8
class SentAreWaitingResponse < ActiveRecord::Migration
    def self.up
        InfoRequestEvent.update_all "described_state = 'waiting_response', calculated_state = 'waiting_response', last_described_at = created_at where event_type = 'sent'"
    end

    def self.down
    end
end