[Fix #586] Add timestamps to tables where they were missing

This commit is contained in:
gregoirenovel 2018-12-18 21:47:11 +01:00
parent d2b730e2e8
commit 8769e49e92
2 changed files with 11 additions and 1 deletions

View file

@ -0,0 +1,6 @@
class AddMissingTimestamps < ActiveRecord::Migration[5.2]
def change
add_timestamps :administrateurs_gestionnaires, null: true
add_timestamps :geo_areas, null: true
end
end