|
10 | 10 | # |
11 | 11 | # It's strongly recommended that you check this file into your version control system. |
12 | 12 |
|
13 | | -ActiveRecord::Schema[7.0].define(version: 2025_07_19_170109) do |
| 13 | +ActiveRecord::Schema[7.0].define(version: 2025_08_26_162148) do |
14 | 14 | # These are extensions that must be enabled in order to support this database |
15 | 15 | enable_extension "plpgsql" |
16 | 16 |
|
| 17 | + create_table "accessories", force: :cascade do |t| |
| 18 | + t.string "name" |
| 19 | + t.integer "amount" |
| 20 | + t.datetime "created_at", null: false |
| 21 | + t.datetime "updated_at", null: false |
| 22 | + end |
| 23 | + |
17 | 24 | create_table "active_storage_attachments", force: :cascade do |t| |
18 | 25 | t.string "name", null: false |
19 | 26 | t.string "record_type", null: false |
|
608 | 615 | t.index ["user_id"], name: "index_trophy_awards_on_user_id" |
609 | 616 | end |
610 | 617 |
|
| 618 | + create_table "user_accessories", force: :cascade do |t| |
| 619 | + t.bigint "accessory_id" |
| 620 | + t.bigint "user_id" |
| 621 | + t.datetime "created_at", null: false |
| 622 | + t.datetime "updated_at", null: false |
| 623 | + t.index ["accessory_id"], name: "index_user_accessories_on_accessory_id" |
| 624 | + t.index ["user_id"], name: "index_user_accessories_on_user_id" |
| 625 | + end |
| 626 | + |
611 | 627 | create_table "user_emojis", force: :cascade do |t| |
612 | 628 | t.bigint "user_id", null: false |
613 | 629 | t.string "name", null: false |
|
0 commit comments