about summary refs log tree commit diff stats
path: root/db/schema.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb10
1 files changed, 9 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index b036d7f..9cfdf57 100644 --- a/db/schema.rb +++ b/db/schema.rb
@@ -10,7 +10,7 @@
10# 10#
11# It's strongly recommended that you check this file into your version control system. 11# It's strongly recommended that you check this file into your version control system.
12 12
13ActiveRecord::Schema[7.1].define(version: 2023_10_30_181440) do 13ActiveRecord::Schema[7.1].define(version: 2024_03_20_145033) do
14 create_table "active_storage_attachments", force: :cascade do |t| 14 create_table "active_storage_attachments", force: :cascade do |t|
15 t.string "name", null: false 15 t.string "name", null: false
16 t.string "record_type", null: false 16 t.string "record_type", null: false
@@ -118,6 +118,14 @@ ActiveRecord::Schema[7.1].define(version: 2023_10_30_181440) do
118 t.date "finished_on" 118 t.date "finished_on"
119 end 119 end
120 120
121 create_table "globals", force: :cascade do |t|
122 t.string "key"
123 t.string "string_value"
124 t.integer "int_value"
125 t.datetime "created_at", null: false
126 t.datetime "updated_at", null: false
127 end
128
121 create_table "lingo_scores", force: :cascade do |t| 129 create_table "lingo_scores", force: :cascade do |t|
122 t.integer "user_id", limit: 8 130 t.integer "user_id", limit: 8
123 t.string "username" 131 t.string "username"