diff options
author | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2013-01-16 16:32:59 +0100 |
---|---|---|
committer | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2013-01-16 16:32:59 +0100 |
commit | 0ee17f52f8ad337c1240b4c55dbd8f6c6c74dc90 (patch) | |
tree | 1016d6e8f1d35629d82ef462fed20827d17c4e3d /db/schema.rb | |
parent | 225a812d5f2da7dc205c021a571ff3c6d5307f20 (diff) |
Fixed routes and breadcrumbs. #106
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index bc51504..898faac 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended to check this file into your version control system. -ActiveRecord::Schema.define(:version => 20130113090705) do +ActiveRecord::Schema.define(:version => 20130116133433) do create_table "access_authorizations", :force => true do |t| t.string "access_authorizationable_type" @@ -176,6 +176,16 @@ ActiveRecord::Schema.define(:version => 20130113090705) do t.datetime "updated_at", :null => false end + create_table "call_routes", :force => true do |t| + t.string "table" + t.string "name" + t.string "endpoint_type" + t.integer "endpoint_id" + t.integer "position" + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false + end + create_table "calls", :id => false, :force => true do |t| t.string "call_uuid" t.string "call_created", :limit => 128 @@ -806,6 +816,19 @@ ActiveRecord::Schema.define(:version => 20130113090705) do t.datetime "updated_at", :null => false end + create_table "route_elements", :force => true do |t| + t.integer "call_route_id" + t.string "var_in" + t.string "var_out" + t.string "pattern" + t.string "replacement" + t.string "action" + t.boolean "mandatory" + t.integer "position" + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false + end + create_table "sessions", :force => true do |t| t.string "session_id", :null => false t.text "data" |