aboutsummaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
authorjpl2017-03-01 17:16:15 +0100
committerjpl2017-03-01 17:16:28 +0100
commit49a472835bf5bfe57c711dfd20b8e1a44afd6264 (patch)
tree28dfa684f901160a37781ecd4f952e4218a5b4a9 /db
parenta31a230a8e019fdf0d3fe948803eff73cccfd333 (diff)
downloadchouette-core-49a472835bf5bfe57c711dfd20b8e1a44afd6264.tar.bz2
Refs #2623: updating selectable_table component, with js params injection to url
Diffstat (limited to 'db')
-rw-r--r--db/schema.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 5ef4dbd20..02ede8b1b 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -165,6 +165,22 @@ ActiveRecord::Schema.define(version: 20170301145604) do
add_index "connection_links", ["objectid"], :name => "connection_links_objectid_key", :unique => true
+ create_table "delayed_jobs", force: true do |t|
+ t.integer "priority", default: 0
+ t.integer "attempts", default: 0
+ t.text "handler"
+ t.text "last_error"
+ t.datetime "run_at"
+ t.datetime "locked_at"
+ t.datetime "failed_at"
+ t.string "locked_by"
+ t.string "queue"
+ t.datetime "created_at"
+ t.datetime "updated_at"
+ end
+
+ add_index "delayed_jobs", ["priority", "run_at"], :name => "delayed_jobs_priority"
+
create_table "exports", force: true do |t|
t.integer "referential_id", limit: 8
t.string "status"
@@ -828,6 +844,8 @@ ActiveRecord::Schema.define(version: 20170301145604) do
add_index "workbenches", ["stop_area_referential_id"], :name => "index_workbenches_on_stop_area_referential_id"
Foreigner.load
+ add_foreign_key "access_links", "access_points", name: "aclk_acpt_fkey", dependent: :delete
+
add_foreign_key "group_of_lines_lines", "group_of_lines", name: "groupofline_group_fkey", dependent: :delete
add_foreign_key "journey_frequencies", "timebands", name: "journey_frequencies_timeband_id_fk", dependent: :nullify