diff options
| author | Teddy Wing | 2018-02-02 18:14:03 +0100 |
|---|---|---|
| committer | cedricnjanga | 2018-02-07 07:17:00 -0800 |
| commit | 93ece87723191a33a830650cfa8c6cbc75470279 (patch) | |
| tree | 4d8148286d28207511c6577e82a0d0685a7cacb1 /db/schema.rb | |
| parent | a5c48d95d78cf611985b0f3dc0d36c070d9f601e (diff) | |
| download | chouette-core-93ece87723191a33a830650cfa8c6cbc75470279.tar.bz2 | |
Set all existing `StopArea`s with nil `kind`s to `:commercial`
The other migration for this in
`db/migrate/20180126134944_add_kind_to_stop_areas.rb` didn't handle
`kind IS NULL`. Since all the `kind`s were initialised to NULL when the
column was created, the `where` query didn't select any stop areas
because it was looking for those with some varchar value, and thus it
wasn't able to update any.
This ensures our existing records all have a `kind` in case we end up
using the field in a template at some point and our old data bugs out.
Refs #5817
Diffstat (limited to 'db/schema.rb')
| -rw-r--r-- | db/schema.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index fc308ecba..5474f9161 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: 20180129141656) do +ActiveRecord::Schema.define(version: 20180202170009) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" |
