about summary refs log tree commit diff
path: root/db
diff options
context:
space:
mode:
Diffstat (limited to 'db')
-rw-r--r--db/schema.rb11
1 files changed, 5 insertions, 6 deletions
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