2024-04-14 10:10:10 +00: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.
|
|
|
|
|
2024-05-29 14:24:18 +00:00
|
|
|
ActiveRecord::Schema[7.1].define(version: 2024_05_29_122012) do
|
2024-04-14 10:10:10 +00:00
|
|
|
# These are extensions that must be enabled in order to support this database
|
|
|
|
enable_extension "plpgsql"
|
|
|
|
|
2024-05-26 08:51:31 +00:00
|
|
|
create_table "game_systems", force: :cascade do |t|
|
|
|
|
t.string "name", null: false
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
2024-05-26 10:42:48 +00:00
|
|
|
t.index ["name"], name: "index_game_systems_on_name", unique: true
|
|
|
|
t.check_constraint "length(name::text) <= 100", name: "chk_name_max_length"
|
2024-05-26 08:51:31 +00:00
|
|
|
end
|
|
|
|
|
2024-05-29 08:09:58 +00:00
|
|
|
create_table "players", primary_key: ["user_id", "table_id"], force: :cascade do |t|
|
|
|
|
t.bigint "user_id", null: false
|
|
|
|
t.bigint "table_id", null: false
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
|
|
|
t.index ["table_id"], name: "index_players_on_table_id"
|
|
|
|
t.index ["user_id"], name: "index_players_on_user_id"
|
|
|
|
end
|
|
|
|
|
2024-05-26 09:06:04 +00:00
|
|
|
create_table "site_roles", force: :cascade do |t|
|
|
|
|
t.string "name", null: false
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
|
|
|
end
|
|
|
|
|
|
|
|
create_table "site_roles_users", force: :cascade do |t|
|
|
|
|
t.bigint "user_id"
|
|
|
|
t.bigint "site_role_id"
|
|
|
|
t.index ["site_role_id"], name: "index_site_roles_users_on_site_role_id"
|
|
|
|
t.index ["user_id"], name: "index_site_roles_users_on_user_id"
|
|
|
|
end
|
|
|
|
|
2024-05-29 14:24:18 +00:00
|
|
|
create_table "table_invites", force: :cascade do |t|
|
|
|
|
t.bigint "table_id", null: false
|
|
|
|
t.string "email", null: false
|
|
|
|
t.datetime "accepted_at"
|
|
|
|
t.datetime "declined_at"
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
|
|
|
t.index ["table_id"], name: "index_table_invites_on_table_id"
|
|
|
|
t.check_constraint "length(email::text) <= 100", name: "chk_email_max_length"
|
|
|
|
t.check_constraint "length(email::text) >= 5", name: "chk_email_min_length"
|
|
|
|
end
|
|
|
|
|
2024-05-28 11:08:19 +00:00
|
|
|
create_table "tables", force: :cascade do |t|
|
|
|
|
t.string "name", null: false
|
|
|
|
t.string "slug", null: false
|
|
|
|
t.bigint "owner_id"
|
|
|
|
t.bigint "game_system_id", null: false
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
2024-05-28 19:40:51 +00:00
|
|
|
t.uuid "uuid", null: false
|
2024-05-28 11:08:19 +00:00
|
|
|
t.index ["game_system_id"], name: "index_tables_on_game_system_id"
|
|
|
|
t.index ["owner_id"], name: "index_tables_on_owner_id"
|
|
|
|
t.index ["slug"], name: "index_tables_on_slug", unique: true
|
|
|
|
t.check_constraint "length(name::text) <= 100", name: "chk_table_name_max_length"
|
|
|
|
t.check_constraint "length(slug::text) <= 100", name: "chk_table_slug_max_length"
|
|
|
|
end
|
|
|
|
|
2024-04-14 10:10:10 +00:00
|
|
|
create_table "users", force: :cascade do |t|
|
|
|
|
t.string "username", limit: 20, null: false
|
|
|
|
t.string "password_digest", limit: 200, null: false
|
|
|
|
t.string "email", limit: 100, null: false
|
|
|
|
t.string "first_name", limit: 50, null: false
|
|
|
|
t.string "last_name", limit: 50, default: "", null: false
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
2024-04-14 19:01:32 +00:00
|
|
|
t.boolean "verified", default: false, null: false
|
2024-04-14 10:10:10 +00:00
|
|
|
t.index ["email"], name: "index_users_on_email", unique: true
|
|
|
|
t.index ["username"], name: "index_users_on_username", unique: true
|
2024-04-14 19:01:32 +00:00
|
|
|
t.index ["verified"], name: "index_users_on_verified"
|
2024-04-14 10:10:10 +00:00
|
|
|
t.check_constraint "length(email::text) >= 5", name: "chk_email_min_length"
|
|
|
|
t.check_constraint "length(first_name::text) >= 1", name: "chk_first_name_min_length"
|
|
|
|
t.check_constraint "length(username::text) >= 3", name: "chk_username_min_length"
|
|
|
|
end
|
|
|
|
|
2024-05-29 08:09:58 +00:00
|
|
|
add_foreign_key "players", "tables"
|
|
|
|
add_foreign_key "players", "users"
|
2024-05-29 14:24:18 +00:00
|
|
|
add_foreign_key "table_invites", "tables"
|
2024-05-28 11:08:19 +00:00
|
|
|
add_foreign_key "tables", "game_systems"
|
|
|
|
add_foreign_key "tables", "users", column: "owner_id"
|
2024-04-14 10:10:10 +00:00
|
|
|
end
|