diff options
| author | Tradam <[email protected]> | 2024-05-16 19:06:29 -0400 |
|---|---|---|
| committer | Tradam <[email protected]> | 2024-05-16 19:06:29 -0400 |
| commit | 43237d776e311ebd00b36c0048ec339a4da5b15b (patch) | |
| tree | 34e68000fe7475fa7a96db8c189132ba7cc752c1 /db/schema.rb | |
| parent | 6ae14ae3a10d79e5f0b70b1b1af74e8a3507bb83 (diff) | |
| download | gameHolster-43237d776e311ebd00b36c0048ec339a4da5b15b.tar.gz gameHolster-43237d776e311ebd00b36c0048ec339a4da5b15b.zip | |
upgrade auth, user and game
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" |
