domain.rb 332 Bytes
module Kanjai
  class Domain < ApplicationRecord
    validates :title, presence: true

    has_many :pages, dependent: :destroy
    has_many :page_langs, dependent: :destroy
    has_many :language_domains, dependent: :destroy
    accepts_nested_attributes_for :language_domains, reject_if: :all_blank, allow_destroy: true
  end
end