debian-mirror-gitlab/db/post_migrate/20170728101014_remove_events_from_notification_settings.rb

10 lines
220 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
class RemoveEventsFromNotificationSettings < ActiveRecord::Migration[4.2]
2017-09-10 17:25:29 +05:30
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
remove_column :notification_settings, :events, :text
end
end