From c647ae95ebd8a5881fb4173f4055f450d1295013 Mon Sep 17 00:00:00 2001 From: Andras Iklody Date: Wed, 24 Nov 2021 13:44:12 +0100 Subject: [PATCH] fix: typo in mysql.sql --- INSTALL/mysql.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/INSTALL/mysql.sql b/INSTALL/mysql.sql index 6bd956c..936df41 100644 --- a/INSTALL/mysql.sql +++ b/INSTALL/mysql.sql @@ -408,7 +408,7 @@ CREATE TABLE IF NOT EXISTS `audit_logs` ( KEY `ip` (`ip`), KEY `model` (`model`), KEY `action` (`action`), - KEY `model_id` (`model_id`) + KEY `model_id` (`model_id`), KEY `created` (`created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;