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/20210917190141_non_work_pac...

14 lines
656 B

class NonWorkPackageNotificationSettings < ActiveRecord::Migration[6.1]
def change
change_table :notification_settings, bulk: true do |t|
t.boolean :news_added, default: false, index: true
t.boolean :news_commented, default: false, index: true
t.boolean :document_added, default: false, index: true
t.boolean :forum_messages, default: false, index: true
t.boolean :wiki_page_added, default: false, index: true
t.boolean :wiki_page_updated, default: false, index: true
t.boolean :membership_added, default: false, index: true
t.boolean :membership_updated, default: false, index: true
end
end
end