summaryrefslogtreecommitdiff
path: root/db/migrate/20190621022810_add_last_ci_minutes_usage_notification_level_to_namespaces.rb
blob: 1611340284c78f286666082cc37ece9c9dc75f75 (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
  end
end