aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZog2018-01-08 08:21:25 +0100
committerZog2018-01-08 08:22:16 +0100
commit5134b83b0bd07d62b6ab1e334977962addfebf47 (patch)
tree712f3df881cf9f0d4a4c18f69837333b4b13a0d4
parent2fdcfb30655599c19629d8f0afc96f64b430358f (diff)
downloadchouette-core-5455-store-costs-between-stops.tar.bz2
-rw-r--r--app/javascript/journey_patterns/actions/index.js13
-rw-r--r--db/schema.rb6
2 files changed, 4 insertions, 15 deletions
diff --git a/app/javascript/journey_patterns/actions/index.js b/app/javascript/journey_patterns/actions/index.js
index 9f1c1c8d3..a70a2e6f2 100644
--- a/app/javascript/journey_patterns/actions/index.js
+++ b/app/javascript/journey_patterns/actions/index.js
@@ -199,18 +199,6 @@ const actions = {
}
})
}
-<<<<<<< HEAD
- journeyPatterns.push({
- name: val.name,
- object_id: val.object_id,
- short_id: val.short_id,
- checksum: val.checksum,
- published_name: val.published_name,
- registration_number: val.registration_number,
- stop_points: val.route_short_description.stop_points,
- deletable: false
- })
-=======
journeyPatterns.push(
_.assign({}, val, {
stop_points: val.route_short_description.stop_points,
@@ -218,7 +206,6 @@ const actions = {
deletable: false
})
)
->>>>>>> Refs #5455 @6h; Add time and distance between stops in Journey Patterns
}
}
window.currentItemsLength = journeyPatterns.length
diff --git a/db/schema.rb b/db/schema.rb
index df8243cfd..6238ece80 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -11,13 +11,14 @@
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 20180103084612) do
+ActiveRecord::Schema.define(version: 20180105102012) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
- enable_extension "postgis"
enable_extension "hstore"
+ enable_extension "postgis"
enable_extension "unaccent"
+ enable_extension "objectid"
create_table "access_links", id: :bigserial, force: :cascade do |t|
t.integer "access_point_id", limit: 8
@@ -115,6 +116,7 @@ ActiveRecord::Schema.define(version: 20180103084612) do
t.datetime "updated_at"
t.date "end_date"
t.string "date_type"
+ t.string "mode"
end
add_index "clean_ups", ["referential_id"], name: "index_clean_ups_on_referential_id", using: :btree