From 59c3f688d16694c22ed265ed7cd959ef51b87956 Mon Sep 17 00:00:00 2001 From: Sarjuuk Date: Sat, 13 Dec 2025 15:58:11 +0100 Subject: [PATCH] DB/Fixup * add lost column from 1e1ce29438cafd888cadf3419cef5e3713ff2c5a to aowow_icons --- setup/sql/01-db_structure.sql | 1 + setup/sql/02-db_initial_data.sql | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/setup/sql/01-db_structure.sql b/setup/sql/01-db_structure.sql index 21ca3557..ee918cdd 100644 --- a/setup/sql/01-db_structure.sql +++ b/setup/sql/01-db_structure.sql @@ -1108,6 +1108,7 @@ CREATE TABLE `aowow_icons` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `cuFlags` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'see defines.php for flags', `name` varchar(55) NOT NULL DEFAULT '', + `name_source` varchar(55) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; diff --git a/setup/sql/02-db_initial_data.sql b/setup/sql/02-db_initial_data.sql index 859c36d0..c9c64720 100644 --- a/setup/sql/02-db_initial_data.sql +++ b/setup/sql/02-db_initial_data.sql @@ -71,7 +71,7 @@ UNLOCK TABLES; LOCK TABLES `aowow_dbversion` WRITE; /*!40000 ALTER TABLE `aowow_dbversion` DISABLE KEYS */; -INSERT INTO `aowow_dbversion` VALUES (1763200072,0,NULL,NULL); +INSERT INTO `aowow_dbversion` VALUES (1764798162,0,NULL,NULL); /*!40000 ALTER TABLE `aowow_dbversion` ENABLE KEYS */; UNLOCK TABLES;