From c95a61fc056f6a2d7fdb82f9288948a890a3bac5 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Mon, 31 Jan 2022 14:00:13 -0500 Subject: switch to table, add total counts --- db/schema.rb | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) (limited to 'db/schema.rb') 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 -- cgit 1.4.1