mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
29 lines
562 B
Ruby
29 lines
562 B
Ruby
# Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
class DbHelper
|
|
|
|
=begin
|
|
|
|
execute post database statements after import (e. g. reset primary key sequences for postgresql)
|
|
|
|
DbHelper.import_post
|
|
|
|
or only for certain tables
|
|
|
|
DbHelper.import_post(table_name)
|
|
|
|
=end
|
|
|
|
def self.import_post(table = nil)
|
|
tables = if table
|
|
[table]
|
|
else
|
|
ActiveRecord::Base.connection.tables
|
|
end
|
|
|
|
tables.each do |t|
|
|
ActiveRecord::Base.connection.reset_pk_sequence!(t)
|
|
end
|
|
end
|
|
|
|
end
|