1
0
mirror of https://github.com/projekteuler/projekteuler.git synced 2026-01-27 10:38:50 +01:00

Create association of translations with their problems

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

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