Sha256: aa347a7fa2a876edeb510974264ed995b1e452811d1149e200876b1f851e96c6
Contents?: true
Size: 311 Bytes
Versions: 39
Compression:
Stored size: 311 Bytes
Contents
# frozen_string_literal: true # Join model that hosts the connection between hosts and ansible_roles class HostAnsibleRole < ApplicationRecord belongs_to_host belongs_to :ansible_role validates :ansible_role_id, :presence => true, :uniqueness => { :scope => :host_id } end
Version data entries
39 entries across 39 versions & 1 rubygems