Sha256: 32f1b6e9f2da9398c9f25b441b3c54f0894333e2eac6f75ed2a57929d19e5e6f
Contents?: true
Size: 527 Bytes
Versions: 79
Compression:
Stored size: 527 Bytes
Contents
# frozen_string_literal: true # Defines the relation between Hostgroup and AnsibleRole class CreateJoinTableHostgroupAnsibleRoles < ActiveRecord::Migration[4.2] def change create_join_table :hostgroup, :ansible_roles, :table_name => 'hostgroup_ansible_roles' do |t| t.index [:hostgroup_id, :ansible_role_id], :name => 'index_ansible_roles_hostgroup_on_hostgroup_id_and_role_id' t.index [:ansible_role_id, :hostgroup_id], :name => 'index_ansible_roles_hostgroup_on_role_id_and_hostgroup_id' end end end
Version data entries
79 entries across 79 versions & 1 rubygems