Commit a3dda6dc authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

Use Postgresql's reset_pk_sequence in Trac importer to reset issue id sequence (#595).

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1119 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 4e244be2
......@@ -373,16 +373,8 @@ namespace :redmine do
end
end
# update issue id sequence if needed
begin
case ActiveRecord::Base.connection.adapter_name.downcase
when 'mysql'
# nothing to do
when 'postgresql'
sql = "SELECT setval('#{Issue.table_name}_id_seq', (SELECT MAX(id) FROM #{Issue.table_name}))"
ActiveRecord::Base.connection.execute(sql)
end
end
# update issue id sequence if needed (postgresql)
Issue.connection.reset_pk_sequence!(Issue.table_name) if Issue.connection.respond_to?('reset_pk_sequence!')
puts
# Wiki
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment