diff options
Diffstat (limited to 'db/schema.rb')
| -rw-r--r-- | db/schema.rb | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index 69731f6..3131a91 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema[7.1].define(version: 2024_05_03_001922) do +ActiveRecord::Schema[7.1].define(version: 2024_05_09_225147) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -53,6 +53,12 @@ ActiveRecord::Schema[7.1].define(version: 2024_05_03_001922) do t.datetime "updated_at", null: false end + create_table "games", force: :cascade do |t| + t.string "title" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + create_table "users", force: :cascade do |t| t.string "identifier" t.string "access_token_digest" |
