Step1 : add new column to Assign_tos and make sure that the data is saved on form submit

This commit is contained in:
kara Diaby 2020-02-18 17:18:25 +01:00
parent bc1c085e5e
commit 5dc5230791
5 changed files with 29 additions and 1 deletions

View file

@ -0,0 +1,5 @@
class AddDailyEmailNotificationsEnabledToAssignTos < ActiveRecord::Migration[5.2]
def change
add_column :assign_tos, :daily_email_notifications_enabled, :boolean, default: false, null: false
end
end