ca56de3648
This changes the minimum supported version of PostgreSQL to 9.3.
13 lines
247 B
Ruby
13 lines
247 B
Ruby
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
module Import
|
|
class Ldap < Import::IntegrationBase
|
|
include Import::Mixin::Sequence
|
|
|
|
private
|
|
|
|
def sequence_name
|
|
'Import::Ldap::Users'
|
|
end
|
|
end
|
|
end
|