Skip to content

Commit

Permalink
Update schema to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
dylan8902 committed May 13, 2024
1 parent 94bc447 commit 84474e3
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema[7.0].define(version: 2022_05_18_205818) do
ActiveRecord::Schema[7.0].define(version: 2023_10_31_130837) do
create_table "accounts", id: :integer, charset: "utf8mb3", force: :cascade do |t|
t.string "number"
t.string "name"
Expand Down Expand Up @@ -191,6 +191,27 @@
t.datetime "updated_at", precision: nil
end

create_table "duo_leaderboards", charset: "utf8mb4", collation: "utf8mb4_general_ci", force: :cascade do |t|
t.string "name"
t.string "url"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["url"], name: "index_duo_leaderboards_on_url", unique: true
end

create_table "duo_leaderboards_participants", id: false, charset: "utf8mb4", collation: "utf8mb4_general_ci", force: :cascade do |t|
t.bigint "duo_participant_id", null: false
t.bigint "duo_leaderboard_id", null: false
t.index ["duo_participant_id", "duo_leaderboard_id"], name: "index_duo"
end

create_table "duo_participants", charset: "utf8mb4", collation: "utf8mb4_general_ci", force: :cascade do |t|
t.string "name"
t.string "photo"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end

create_table "episodes", id: :integer, charset: "utf8mb3", force: :cascade do |t|
t.string "pid", null: false
t.string "title", null: false
Expand Down

0 comments on commit 84474e3

Please sign in to comment.