10 lines
169 B
Ruby
10 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
|