mirror of
https://github.com/projekteuler/projekteuler.git
synced 2025-12-10 08:46:41 +01:00
5 lines
109 B
Ruby
5 lines
109 B
Ruby
class Problem < ActiveRecord::Base
|
|
has_one :translation
|
|
has_many :translations, inverse_of: :problem
|
|
end
|