From 0721e4bbe37da83c294e4281f9adf660f4821e9e Mon Sep 17 00:00:00 2001 From: Eduardo Dantas Date: Mon, 9 Dec 2024 16:31:28 -0300 Subject: [PATCH] fix: remove last migration --- data-otservbr-global/migrations/47.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/data-otservbr-global/migrations/47.lua b/data-otservbr-global/migrations/47.lua index 86a6d8ffec1..b4f3c7af9c4 100644 --- a/data-otservbr-global/migrations/47.lua +++ b/data-otservbr-global/migrations/47.lua @@ -1,3 +1,6 @@ function onUpdateDatabase() - return false -- true = There are others migrations file | false = this is the last migration file + logger.info("Updating database to version 47 (fix: creature speed and conditions)") + + db.query("ALTER TABLE `players` MODIFY `conditions` mediumblob NOT NULL;") end +