Add the AddPublishedAtToProcedure migration

This commit is contained in:
gregoirenovel 2017-06-27 11:22:44 +02:00
parent 99ee68451a
commit 1b808d9abe
2 changed files with 9 additions and 2 deletions

View file

@ -0,0 +1,5 @@
class AddPublishedAtToProcedure < ActiveRecord::Migration[5.0]
def change
add_column :procedures, :published_at, :datetime
end
end