mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 07:28:41 -07:00
5 lines
172 B
Ruby
5 lines
172 B
Ruby
class Parent < ApplicationRecord
|
|
belongs_to :housing, optional: true
|
|
has_many :parent_languages
|
|
has_and_belongs_to_many :languages, join_table: :parent_languages
|
|
end
|