From 1a539f665638721eed0df7e90dc10411f0865625 Mon Sep 17 00:00:00 2001 From: nytmyr <53322305+nytmyr@users.noreply.github.com> Date: Mon, 28 Apr 2025 16:48:30 -0500 Subject: [PATCH] [Hotfix] Fix #copycharacter command (#4860) This was failing due to a column change in `inventory` from `charid` to `character_id` and would result in no inventory for the new character. --- common/database_schema.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/database_schema.h b/common/database_schema.h index e92b7619a..de6f8472f 100644 --- a/common/database_schema.h +++ b/common/database_schema.h @@ -80,7 +80,7 @@ namespace DatabaseSchema { {"guild_members", "char_id"}, {"guilds", "id"}, {"instance_list_player", "id"}, - {"inventory", "charid"}, + {"inventory", "character_id"}, {"inventory_snapshots", "charid"}, {"keyring", "char_id"}, {"mail", "charid"},