mirror of
https://github.com/projekteuler/projekteuler.git
synced 2026-01-26 18:18:51 +01:00
Create association of translations with their problems
This commit is contained in:
5
db/migrate/20141214221259_add_problem_to_translation.rb
Normal file
5
db/migrate/20141214221259_add_problem_to_translation.rb
Normal file
@@ -0,0 +1,5 @@
|
||||
class AddProblemToTranslation < ActiveRecord::Migration
|
||||
def change
|
||||
add_reference :translations, :problem, index: true
|
||||
end
|
||||
end
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user