gitlab-org--gitlab-foss/app/models/users/credit_card_validation.rb

10 lines
178 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Users
class CreditCardValidation < ApplicationRecord
self.table_name = 'user_credit_card_validations'
belongs_to :user
end
end