1
0
mirror of https://github.com/projekteuler/projekteuler.git synced 2025-12-10 08:46:41 +01:00

Create association of translations with their problems

This commit is contained in:
Philipp Fischbeck 2014-12-15 00:38:29 +01:00
parent 79ed82cfd8
commit bbe80b1409
4 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,4 @@
class Problem < ActiveRecord::Base
has_one :translation
has_many :translations, inverse_of: :problem
end

View File

@ -1,4 +1,6 @@
class Translation < ActiveRecord::Base
belongs_to :problem, inverse_of: :translations
validates :title, :content, presence: true
validates :title, uniqueness: true

View File

@ -0,0 +1,5 @@
class AddProblemToTranslation < ActiveRecord::Migration
def change
add_reference :translations, :problem, index: true
end
end

View File

@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20141214220056) do
ActiveRecord::Schema.define(version: 20141214221259) do
create_table "problems", force: true do |t|
t.datetime "created_at"
@ -26,6 +26,9 @@ ActiveRecord::Schema.define(version: 20141214220056) do
t.text "content"
t.datetime "created_at"
t.datetime "updated_at"
t.integer "problem_id"
end
add_index "translations", ["problem_id"], name: "index_translations_on_problem_id"
end