From 8f78892212a2a592db28a846fe5c384149d73785 Mon Sep 17 00:00:00 2001 From: Emi Matchu Date: Wed, 28 Feb 2024 17:58:46 -0800 Subject: [PATCH] Remove item_translations from schema.rb?? Yeah what the heck, why is this here, we have the migration to drop it and it's already dropped in production! Y'know, sometimes I goof a migration and it sets things in a weird state in development, maybe we didn't recover correctly from that or something? But idk how we would have goofed this one. Whatever! I've manually dropped it from my development machine, and it was already correctly dropped on production, so, go figure! --- db/schema.rb | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/db/schema.rb b/db/schema.rb index d066d8d0..bdd5864d 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -116,20 +116,6 @@ ActiveRecord::Schema[7.1].define(version: 2024_02_27_233743) do t.index ["outfit_id", "is_worn"], name: "index_item_outfit_relationships_on_outfit_id_and_is_worn" end - create_table "item_translations", id: :integer, charset: "latin1", collation: "latin1_swedish_ci", force: :cascade do |t| - t.integer "item_id" - t.string "locale" - t.string "name" - t.text "description" - t.string "rarity" - t.datetime "created_at", precision: nil - t.datetime "updated_at", precision: nil - t.index ["item_id", "locale"], name: "index_item_translations_on_item_id_and_locale" - t.index ["item_id"], name: "index_item_translations_on_item_id" - t.index ["locale"], name: "index_item_translations_on_locale" - t.index ["name"], name: "index_item_translations_name" - end - create_table "items", id: :integer, charset: "utf8mb3", collation: "utf8mb3_unicode_ci", force: :cascade do |t| t.text "zones_restrict", null: false t.text "thumbnail_url", size: :medium, null: false