Sha256: 0f4160d094e178f4860ed72a55e3804e0768cddfe3bc2e9391bf3b89b89b7a7c
Contents?: true
Size: 549 Bytes
Versions: 3
Compression:
Stored size: 549 Bytes
Contents
module DockerContainerWizardStates class Image < ActiveRecord::Base self.table_name_prefix = 'docker_container_wizard_states_' belongs_to :wizard_state, :class_name => DockerContainerWizardState, :foreign_key => :docker_container_wizard_state_id delegate :compute_resource_id, :to => :wizard_state validates :tag, :presence => true validates :repository_name, :presence => true attr_accessible :repository_name, :tag, :wizard_state, :registry_id, :capsule_id, :katello end end
Version data entries
3 entries across 3 versions & 1 rubygems