gitlab-org--gitlab-foss/db/post_migrate/20170728101014_remove_event...

10 lines
220 B
Ruby

class RemoveEventsFromNotificationSettings < ActiveRecord::Migration[4.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
remove_column :notification_settings, :events, :text
end
end