[Database] Modify updated column in items table with proper default.

From https://mariadb.com/kb/en/datetime/, `datetime` can be ZERO_DATE (`0000-00-00` with no time component) or between `1000-01-01 00:00:00.000000` and `9999-12-31 23:59:59.999999`. Currently, `updated` is the only datetime field that is `NOT NULL` and improperly defaulted to `0000-00-00 00:00:00`. This change matches existing structures of the other `datetime` columns.
This commit is contained in:
JJ
2023-11-30 20:09:36 -05:00
parent d8953c5156
commit 5e6f87b162
2 changed files with 14 additions and 4 deletions
+1 -1
View File
@@ -42,7 +42,7 @@
* Manifest: https://github.com/EQEmu/Server/blob/master/utils/sql/db_update_manifest.txt
*/
#define CURRENT_BINARY_DATABASE_VERSION 9243
#define CURRENT_BINARY_DATABASE_VERSION 9244
#define CURRENT_BINARY_BOTS_DATABASE_VERSION 9040