diff options
| author | YarNayar <YarTheGreat@gmail.com> | 2017-07-25 14:56:09 +0300 |
|---|---|---|
| committer | Sean McGivern <sean@gitlab.com> | 2018-03-26 13:24:52 +0100 |
| commit | 99b01e23598e6b0b2bcae891939ea28c67f7b2e9 (patch) | |
| tree | c32d351419cd399dcb104eac54563b7028bbd1d8 /db/migrate | |
| parent | bb9d360c0a7daed6aa08a0635e084c314c2c8b3e (diff) | |
| download | gitlab-ce-99b01e23598e6b0b2bcae891939ea28c67f7b2e9.tar.gz | |
Send notification emails when push to a merge requestYarNayar/gitlab-ce-23460-send-email-when-pushing-more-commits-to-the-merge-request
Closes #23460
Diffstat (limited to 'db/migrate')
| -rw-r--r-- | db/migrate/20180323150945_add_push_to_merge_request_to_notification_settings.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/db/migrate/20180323150945_add_push_to_merge_request_to_notification_settings.rb b/db/migrate/20180323150945_add_push_to_merge_request_to_notification_settings.rb new file mode 100644 index 00000000000..12b8875d8dc --- /dev/null +++ b/db/migrate/20180323150945_add_push_to_merge_request_to_notification_settings.rb @@ -0,0 +1,9 @@ +class AddPushToMergeRequestToNotificationSettings < ActiveRecord::Migration + include Gitlab::Database::MigrationHelpers + + DOWNTIME = false + + def change + add_column :notification_settings, :push_to_merge_request, :boolean + end +end |
