foreman_docker / app / models / docker_container_wizard_states / configuration.rb @ 692e3a26
1 |
module DockerContainerWizardStates |
---|---|
2 |
class Configuration < ActiveRecord::Base |
3 |
self.table_name_prefix = 'docker_container_wizard_states_' |
4 |
belongs_to :wizard_state, :class_name => DockerContainerWizardState, |
5 |
:foreign_key => :docker_container_wizard_state_id |
6 |
|
7 |
attr_accessible :name, :command, :entrypoint, :cpu_set, :cpu_shares, :memory, :wizard_state |
8 |
end
|
9 |
end
|