Add aasm_state to procedures

This commit is contained in:
Paul Chavard 2018-05-15 16:20:21 +02:00
parent a8e7038ab5
commit 2b8ee92074
4 changed files with 18 additions and 4 deletions

View file

@ -0,0 +1,5 @@
class AddAasmStateToProcedures < ActiveRecord::Migration[5.2]
def change
add_column :procedures, :aasm_state, :string, index: true, default: :brouillon
end
end