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

10 lines
215 B
Ruby
Raw Normal View History

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