Kamrad117/targetprocess-ruby

View on GitHub
lib/target_process/entities/entity_state.rb

Summary

Maintainability
A
0 mins
Test Coverage
module TargetProcess
  class EntityState < Base
    has_many :next_states, 'EntityState'
    has_many :previous_states, 'EntityState'
    belongs_to :role
    belongs_to :entity_type
    belongs_to :process
  end
end