suitepro/db/migrate/20121209123358_update_queries_to_sti.rb
2018-02-02 22:19:29 +01:00

9 lines
169 B
Ruby

class UpdateQueriesToSti < ActiveRecord::Migration
def up
::Query.update_all :type => 'IssueQuery'
end
def down
::Query.update_all :type => nil
end
end