diff options
| author | cedricnjanga | 2018-03-08 20:39:59 -0800 |
|---|---|---|
| committer | Alban Peignier | 2018-03-15 10:00:36 +0100 |
| commit | 18fbb9be2993bcffa4183d4e45b4759088a19075 (patch) | |
| tree | 92a7b402e8a81e22966a01064fe3b28c49b335d3 /db | |
| parent | 9e1ad7402881a0ef47b949a3ad95ba39e6e65008 (diff) | |
| download | chouette-core-18fbb9be2993bcffa4183d4e45b4759088a19075.tar.bz2 | |
Refs #6033 Add confirmed_at attribute to Chouette::StopArea
Diffstat (limited to 'db')
| -rw-r--r-- | db/migrate/20180307202627_add_confirmed_at_to_stop_areas.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20180307202627_add_confirmed_at_to_stop_areas.rb b/db/migrate/20180307202627_add_confirmed_at_to_stop_areas.rb new file mode 100644 index 000000000..602d3afdc --- /dev/null +++ b/db/migrate/20180307202627_add_confirmed_at_to_stop_areas.rb @@ -0,0 +1,5 @@ +class AddConfirmedAtToStopAreas < ActiveRecord::Migration + def change + add_column :stop_areas, :confirmed_at, :datetime + end +end |
