summaryrefslogtreecommitdiff
path: root/db/migrate/20190621022810_add_last_ci_minutes_usage_notification_level_to_namespaces.rb
blob: 02e06703acc4639b4073cc36a2ade62035c6d0c5 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddLastCiMinutesUsageNotificationLevelToNamespaces < ActiveRecord::Migration[5.1]
  DOWNTIME = false

  def change
    add_column :namespaces, :last_ci_minutes_usage_notification_level, :integer # rubocop:disable Migration/AddColumnsToWideTables
  end
end