summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-01-16 16:32:59 +0100
committerStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-01-16 16:32:59 +0100
commit0ee17f52f8ad337c1240b4c55dbd8f6c6c74dc90 (patch)
tree1016d6e8f1d35629d82ef462fed20827d17c4e3d /db
parent225a812d5f2da7dc205c021a571ff3c6d5307f20 (diff)
Fixed routes and breadcrumbs. #106
Diffstat (limited to 'db')
-rw-r--r--db/schema.rb25
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"