debian-mirror-gitlab/db/post_migrate/20170728101014_remove_events_from_notification_settings.rb
2017-09-10 17:25:29 +05:30

10 lines
215 B
Ruby

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