about summary refs log tree commit diff
path: root/db
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2022-06-20 16:14:12 -0400
committerBen Harris <ben@tilde.team>2022-06-20 16:14:12 -0400
commit0d71b8b90d69a98e8bbabc13cd4efe5d9a43b4a1 (patch)
tree0343b8ad32f210e0c7a695ba9be2b157e4244204 /db
parent182ae31f39d665de8aa4c72a3808c3feec394f70 (diff)
bump deps and use ruby 3.1.2 main
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