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

Create Problem model with reference to current translation

This commit is contained in:
2014-12-14 23:11:40 +01:00
parent e13b82ad1f
commit 79ed82cfd8
6 changed files with 38 additions and 1 deletions

View File

@@ -11,7 +11,15 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20141213151812) do
ActiveRecord::Schema.define(version: 20141214220056) do
create_table "problems", force: true do |t|
t.datetime "created_at"
t.datetime "updated_at"
t.integer "translation_id"
end
add_index "problems", ["translation_id"], name: "index_problems_on_translation_id"
create_table "translations", force: true do |t|
t.string "title"