aboutsummaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
authorZog2018-01-26 16:17:22 +0100
committercedricnjanga2018-02-07 07:01:03 -0800
commit849f552b796118b4ab7cabbbda8b9ce1b5d4bc54 (patch)
treeb5dcac30cbcc6312be06434b3c664cd2aabbda24 /db
parentad7dfea7f280cdf0727dd3471a1f26db4197c394 (diff)
downloadchouette-core-849f552b796118b4ab7cabbbda8b9ce1b5d4bc54.tar.bz2
Refs #5750 @1h; Add a "kind" attribute to StopAreas
This determines if the StopArea is commercial or not The useless fields are hidden in the form for the non-commercials ones
Diffstat (limited to 'db')
-rw-r--r--db/schema.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 5ff0a9326..fc308ecba 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -15,9 +15,10 @@ ActiveRecord::Schema.define(version: 20180129141656) 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
@@ -119,6 +120,7 @@ ActiveRecord::Schema.define(version: 20180129141656) 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