summaryrefslogtreecommitdiff
path: root/app/models/users/credit_card_validation.rb
blob: 5e255acd88285f7885f3ea3f5cbcc2576896eefe (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Users
  class CreditCardValidation < ApplicationRecord
    RELEASE_DAY = Date.new(2021, 5, 17)

    self.table_name = 'user_credit_card_validations'

    belongs_to :user
  end
end