diff options
Diffstat (limited to 'app/models/call_route.rb')
-rw-r--r-- | app/models/call_route.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/models/call_route.rb b/app/models/call_route.rb new file mode 100644 index 0000000..eba247c --- /dev/null +++ b/app/models/call_route.rb @@ -0,0 +1,5 @@ +class CallRoute < ActiveRecord::Base + attr_accessible :table, :name, :endpoint_type, :endpoint_id, :position + + has_many :route_elements, :dependent => :destroy +end |