From 3ff855afe8b9cb59507b6cfd892ec8992a030f68 Mon Sep 17 00:00:00 2001 From: Sarjuuk Date: Mon, 24 Feb 2020 01:36:42 +0100 Subject: [PATCH] Setup/Mails * index can actually be negative --- setup/db_structure.sql | 2 +- setup/updates/1581549222_01.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/db_structure.sql b/setup/db_structure.sql index 6bfc181f..cb7f4341 100644 --- a/setup/db_structure.sql +++ b/setup/db_structure.sql @@ -1588,7 +1588,7 @@ DROP TABLE IF EXISTS `aowow_mails`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `aowow_mails` ( - `id` smallint(5) unsigned NOT NULL, + `id` smallint(5) NOT NULL, `subject_loc0` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, `subject_loc2` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, `subject_loc3` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, diff --git a/setup/updates/1581549222_01.sql b/setup/updates/1581549222_01.sql index 31853f14..177faed6 100644 --- a/setup/updates/1581549222_01.sql +++ b/setup/updates/1581549222_01.sql @@ -2,7 +2,7 @@ DROP TABLE IF EXISTS `aowow_mailtemplate`; DROP TABLE IF EXISTS `aowow_mails`; CREATE TABLE `aowow_mails` ( - `id` smallint(5) unsigned NOT NULL, + `id` smallint(5) NOT NULL, `subject_loc0` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, `subject_loc2` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, `subject_loc3` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,