Avis: add confidentiel field

This commit is contained in:
Simon Lehericey 2017-09-08 11:52:20 +02:00
parent 112e3a5793
commit f55c7a0512
3 changed files with 15 additions and 4 deletions

View file

@ -0,0 +1,5 @@
class AddConfidentielFieldToAvis < ActiveRecord::Migration[5.0]
def change
add_column :avis, :confidentiel, :boolean, default: false, null: false
end
end