Skip to content

Commit

Permalink
Fix SQL schema syntax error from last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
zerocrates committed Jul 9, 2024
1 parent 76bcf1c commit 0fb5b95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/schema/element_texts.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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;

0 comments on commit 0fb5b95

Please sign in to comment.