summaryrefslogtreecommitdiff
path: root/db/migrate/20230120170042_re_add_web_hook_calls_column.rb
blob: 1096c073f371035f52b1cd21dcaef60525a585ac (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class ReAddWebHookCallsColumn < Gitlab::Database::Migration[2.1]
  enable_lock_retries!

  def change
    add_column :plan_limits, :web_hook_calls, :integer, default: 0, null: false, if_not_exists: true
  end
end