# frozen_string_literal: false class UpdateQueriesToSti < ActiveRecord::Migration[4.2] def up ::Query.update_all :type => 'IssueQuery' end def down ::Query.update_all :type => nil end end