9 lines
174 B
Ruby
9 lines
174 B
Ruby
class UpdateQueriesToSti < ActiveRecord::Migration[4.2]
|
|
def up
|
|
::Query.update_all :type => 'IssueQuery'
|
|
end
|
|
|
|
def down
|
|
::Query.update_all :type => nil
|
|
end
|
|
end
|