##// END OF EJS Templates
Show warning when exported issues exceed the limit (#13770)....
Show warning when exported issues exceed the limit (#13770). git-svn-id: http://svn.redmine.org/redmine/trunk@12663 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9346:5e57a1a9d947
r12388:f890c775f1b1
Show More
20120422150750_change_repositories_to_full_sti.rb
17 lines | 664 B | text/x-ruby | RubyLexer
/ db / migrate / 20120422150750_change_repositories_to_full_sti.rb
class ChangeRepositoriesToFullSti < ActiveRecord::Migration
def up
Repository.connection.select_rows("SELECT id, type FROM #{Repository.table_name}").each do |repository_id, repository_type|
unless repository_type =~ /^Repository::/
Repository.update_all ["type = ?", "Repository::#{repository_type}"], ["id = ?", repository_id]
end
end
end
def down
Repository.connection.select_rows("SELECT id, type FROM #{Repository.table_name}").each do |repository_id, repository_type|
if repository_type =~ /^Repository::(.+)$/
Repository.update_all ["type = ?", $1], ["id = ?", repository_id]
end
end
end
end