debian-mirror-gitlab/db/post_migrate/20170728101014_remove_events_from_notification_settings.rb
2019-02-15 15:39:39 +05:30

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