mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
12 lines
313 B
Ruby
12 lines
313 B
Ruby
class AddTrainingCreditNbToPlan < ActiveRecord::Migration
|
|
def change
|
|
add_column :plans, :training_credit_nb, :integer
|
|
|
|
if Plan.column_names.include? "training_credit_nb"
|
|
Plan.all.each do |p|
|
|
p.update_columns(training_credit_nb: (p.interval == 'month' ? 1 : 5))
|
|
end
|
|
end
|
|
end
|
|
end
|