From 0fb5b956bea1acd48d10fc62143dba16b83b63ee Mon Sep 17 00:00:00 2001 From: John Flatness Date: Tue, 9 Jul 2024 18:29:43 -0400 Subject: [PATCH] Fix SQL schema syntax error from last commit --- application/schema/element_texts.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/schema/element_texts.sql b/application/schema/element_texts.sql index ed83f3efa..461b4478e 100644 --- a/application/schema/element_texts.sql +++ b/application/schema/element_texts.sql @@ -9,5 +9,5 @@ CREATE TABLE IF NOT EXISTS `%PREFIX%element_texts` ( KEY `record_type_record_id` (`record_type`, `record_id`), KEY `element_id` (`element_id`), KEY `text` (`text`(20)), - KEY `record_element_text` (`record_type`, `record_id`, `element_id`, `text`(20)); + KEY `record_element_text` (`record_type`, `record_id`, `element_id`, `text`(20)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;