From 1567141c1987a70bd4021f9b8863cd00e9e7eb5c Mon Sep 17 00:00:00 2001 From: JJ <3617814+joligario@users.noreply.github.com> Date: Sun, 11 Feb 2024 18:29:05 -0500 Subject: [PATCH] [Database] Fix table name in manifest (#4063) --- common/database/database_update_manifest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/database/database_update_manifest.cpp b/common/database/database_update_manifest.cpp index 7339d9d61..c071859ec 100644 --- a/common/database/database_update_manifest.cpp +++ b/common/database/database_update_manifest.cpp @@ -5363,7 +5363,7 @@ ALTER TABLE `character_corpses` MODIFY COLUMN `time_of_death` datetime NOT NULL .condition = "contains", .match = "0000-00-00 00:00:00", .sql = R"( -ALTER TABLE `character_corpses` MODIFY COLUMN `droptime` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP; +ALTER TABLE `object_contents` MODIFY COLUMN `droptime` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP; )" } // -- template; copy/paste this when you need to create a new entry