debian-mirror-gitlab/db/migrate/20230120170042_re_add_web_hook_calls_column.rb
2023-04-23 21:23:45 +05:30

10 lines
244 B
Ruby

# 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