diff options
Diffstat (limited to 'db/schema.rb')
| -rw-r--r-- | db/schema.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/db/schema.rb b/db/schema.rb index 3131a91..eca4cd1 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -54,12 +54,16 @@ ActiveRecord::Schema[7.1].define(version: 2024_05_09_225147) do end create_table "games", force: :cascade do |t| + t.bigint "user_id" t.string "title" + t.string "titleSlug" t.datetime "created_at", null: false t.datetime "updated_at", null: false + t.index ["user_id"], name: "index_games_on_user_id" end create_table "users", force: :cascade do |t| + t.string "user_name" t.string "identifier" t.string "access_token_digest" t.string "salt" |
