summaryrefslogtreecommitdiff
path: root/db/migrate/20230224130315_add_constraint_type_to_postgres_async_constraint_validation.rb
blob: dee5810d0d14e857e64b9bf50b52f1ed9b33f312 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddConstraintTypeToPostgresAsyncConstraintValidation < Gitlab::Database::Migration[2.1]
  def change
    add_column :postgres_async_foreign_key_validations, :constraint_type, :integer, null: false, default: 0, limit: 2
  end
end