From 0d71b8b90d69a98e8bbabc13cd4efe5d9a43b4a1 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Mon, 20 Jun 2022 16:14:12 -0400 Subject: bump deps and use ruby 3.1.2 --- db/schema.rb | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'db/schema.rb') diff --git a/db/schema.rb b/db/schema.rb index 308429d..ab21bcb 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,21 +10,20 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 2022_01_15_164820) do - +ActiveRecord::Schema[7.0].define(version: 2022_01_15_164820) do create_table "machines", force: :cascade do |t| t.string "name" t.string "edition" - t.datetime "created_at", precision: 6, null: false - t.datetime "updated_at", precision: 6, null: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false end create_table "players", force: :cascade do |t| t.string "name" t.boolean "paid" t.integer "strikes" - t.datetime "created_at", precision: 6, null: false - t.datetime "updated_at", precision: 6, null: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false end end -- cgit 1.4.1