mirror of
https://github.com/projekteuler/projekteuler.git
synced 2026-01-27 02:28:50 +01:00
Create association of translations with their problems
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
class Problem < ActiveRecord::Base
|
||||
has_one :translation
|
||||
has_many :translations, inverse_of: :problem
|
||||
end
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
class Translation < ActiveRecord::Base
|
||||
belongs_to :problem, inverse_of: :translations
|
||||
|
||||
validates :title, :content, presence: true
|
||||
validates :title, uniqueness: true
|
||||
|
||||
|
||||
Reference in New Issue
Block a user