about summary refs log tree commit diff
path: root/db
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2022-01-31 14:00:13 -0500
committerBen Harris <ben@tilde.team>2022-01-31 14:00:13 -0500
commitc95a61fc056f6a2d7fdb82f9288948a890a3bac5 (patch)
treeac830576036bdc54d742668345680e452af69b99 /db
parentc5b9fe77a8a0e1c2e6a051b700c5a5d4b98ff6fb (diff)
switch to table, add total counts
Diffstat (limited to 'db')
-rw-r--r--db/schema.rb25
1 files changed, 12 insertions, 13 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 7a3bd6b..308429d 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -1,4 +1,3 @@
-# frozen_string_literal: true
 # This file is auto-generated from the current state of the database. Instead
 # of editing this file, please use the migrations feature of Active Record to
 # incrementally modify your database, and then regenerate this schema definition.
@@ -11,21 +10,21 @@
 #
 # It's strongly recommended that you check this file into your version control system.
 
-ActiveRecord::Schema.define(version: 20_220_115_164_820) do
+ActiveRecord::Schema.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
+  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
   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
+  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
   end
 
 end