OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/db/migrate/20210802114054_add_notifica...

14 lines
489 B

class AddNotificationSettingOptions < ActiveRecord::Migration[6.1]
def change
change_table :notification_settings, bulk: true do |t|
t.boolean :work_package_commented, default: false
t.boolean :work_package_created, default: false
t.boolean :work_package_processed, default: false
t.boolean :work_package_prioritized, default: false
end
# TODO: remove existing notification setting from settings
# TODO: add index to all boolean fields
end
end