1
0
şunun yansıması https://github.com/redmine/redmine.git eşitlendi 2024-07-27 07:37:45 +02:00
redmine/db/migrate/20121209123358_update_queries_to_sti.rb

10 satır
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