Add closed_at to procedures table

This commit is contained in:
Paul Chavard 2019-11-14 09:59:16 +01:00
parent 7b947feae4
commit b29b6176c9
2 changed files with 7 additions and 1 deletions

View file

@ -0,0 +1,5 @@
class AddClosedAtToProcedures < ActiveRecord::Migration[5.2]
def change
add_column :procedures, :closed_at, :datetime
end
end