diff options
| author | Robert | 2018-01-10 08:30:54 +0100 |
|---|---|---|
| committer | Alban Peignier | 2018-01-10 17:47:10 +0100 |
| commit | 547871444fa4e0958566fcd28030fb39ae8117f1 (patch) | |
| tree | 83a47d69ee918fdf0e3627498b4cb21ccf68aa15 /db/schema.rb | |
| parent | ab6a4624b7adeb3f4304eec65f4b42cdcc27b0dc (diff) | |
| download | chouette-core-547871444fa4e0958566fcd28030fb39ae8117f1.tar.bz2 | |
Fixes: #5505@0.25h; Invesitgating the failure to compute a distinct join on vehicle_journeys
Solution: custom_field_values: json -> jsonb
Diffstat (limited to 'db/schema.rb')
| -rw-r--r-- | db/schema.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/db/schema.rb b/db/schema.rb index e415d4b83..e50a1c146 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20180109180350) do +ActiveRecord::Schema.define(version: 20180110071946) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -973,7 +973,7 @@ ActiveRecord::Schema.define(version: 20180109180350) do t.string "checksum" t.text "checksum_source" t.string "data_source_ref" - t.json "custom_field_values" + t.jsonb "custom_field_values" end add_index "vehicle_journeys", ["objectid"], name: "vehicle_journeys_objectid_key", unique: true, using: :btree |
