7 lines
200 B
Ruby
7 lines
200 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CountryState < ApplicationRecord
|
|
has_many :membership_applications, dependent: :restrict_with_exception
|
|
|
|
validates :name, presence: true, uniqueness: true
|
|
end
|