Sha256: 5746aa6c2f7c7dcaf6ecfa03eb1850df4d47b2038deeeaf726adc9c0b977b87e
Contents?: true
Size: 322 Bytes
Versions: 104
Compression:
Stored size: 322 Bytes
Contents
# frozen_string_literal: true # Defines the relation between Host and AnsibleRole class CreateJoinTableHostsAnsibleRoles < ActiveRecord::Migration[4.2] def change create_join_table :ansible_roles, :hosts do |t| t.index [:host_id, :ansible_role_id] t.index [:ansible_role_id, :host_id] end end end
Version data entries
104 entries across 104 versions & 1 rubygems