clocks_server/db/schema.rb

62 lines
2.0 KiB
Ruby
Raw Permalink Normal View History

2026-02-01 19:13:08 -05:00
# 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.
#
# This file is the source Rails uses to define your schema when running `bin/rails
# db:schema:load`. When creating a new database, `bin/rails db:schema:load` tends to
# be faster and is potentially less error prone than running all of your
# migrations from scratch. Old migrations may fail to apply correctly if those
# migrations use external dependencies or application code.
#
# It's strongly recommended that you check this file into your version control system.
2026-02-01 19:45:29 -05:00
ActiveRecord::Schema[8.1].define(version: 2026_02_02_002823) do
create_table "clocks", force: :cascade do |t|
t.datetime "created_at", null: false
t.integer "game_id"
t.integer "max_value"
t.string "name"
t.datetime "updated_at", null: false
t.integer "value"
end
create_table "games", force: :cascade do |t|
t.datetime "created_at", null: false
t.string "name"
t.datetime "updated_at", null: false
end
create_table "morales", force: :cascade do |t|
t.datetime "created_at", null: false
t.integer "game_id"
t.float "max_value"
t.float "min_value"
t.string "name"
t.datetime "updated_at", null: false
t.float "value"
end
create_table "resources", force: :cascade do |t|
t.datetime "created_at", null: false
t.integer "game_id"
t.integer "max_value"
t.string "name"
t.datetime "updated_at", null: false
t.integer "value"
end
create_table "text_tracker_messages", force: :cascade do |t|
t.datetime "created_at", null: false
t.text "text"
t.integer "text_tracker_id"
t.datetime "updated_at", null: false
end
create_table "text_trackers", force: :cascade do |t|
t.datetime "created_at", null: false
t.integer "game_id"
t.string "name"
t.datetime "updated_at", null: false
end
2026-02-01 19:13:08 -05:00
end