You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cartodb/db/migrate/20150901074943_create_ldap_...

31 lines
1.2 KiB

Sequel.migration do
up do
SequelRails::connection.run 'CREATE EXTENSION IF NOT EXISTS "uuid-ossp"'
create_table :ldap_configurations do
Uuid :id, primary_key: true, default: Sequel.lit('uuid_generate_v4()')
foreign_key :organization_id, :organizations, type: 'uuid', null: false
String :host, null: false
Integer :port, null: false
String :encryption
String :ca_file # Certificate file for start_tls encryption. Example: "/etc/cafile.pem"
String :ssl_version # For start_tls_encryption. Example: "TLSv1_1"
String :connection_user, null: false
String :connection_password, null: false
String :user_id_field, null: false
String :username_field, null: false
String :email_field, null: false
String :domain_bases, null: false
String :user_object_class, null: false
String :group_object_class, null: false
DateTime :created_at, default: Sequel::CURRENT_TIMESTAMP
DateTime :updated_at, default: Sequel::CURRENT_TIMESTAMP
end
end
down do
drop_table :ldap_configurations
end
end