2023-10-13 00:02:22 +00:00
|
|
|
class PartOfSpeech < ApplicationRecord
|
2023-10-25 03:47:01 +00:00
|
|
|
belongs_to :language
|
2023-12-06 20:53:25 +00:00
|
|
|
|
|
|
|
has_many :translations, class_name: "PartOfSpeech", foreign_key: "part_of_speech_id"
|
2023-10-13 00:02:22 +00:00
|
|
|
end
|