Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions emoji_support/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ It's always good idea to check with the developer though, as it is possible that

## Change Log

### 2.1.1

- Skip exp_pro_search_index table.

### 2.1.0

- Added EE6 support
Expand Down
2 changes: 1 addition & 1 deletion emoji_support/mcp.emoji_support.php
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ protected function getAffectedIndicies()
{
$return = [];

$indicies = ee()->db->query("SELECT `TABLE_NAME`, `COLUMN_NAME` FROM `INFORMATION_SCHEMA`.`COLUMNS` WHERE `TABLE_SCHEMA` = '" . ee()->db->database . "' AND `DATA_TYPE` REGEXP 'char|text' AND `CHARACTER_MAXIMUM_LENGTH` > 191 AND `COLUMN_KEY` <> '' AND `COLUMN_NAME` NOT IN ('url_title', 'cat_group');");
$indicies = ee()->db->query("SELECT `TABLE_NAME`, `COLUMN_NAME` FROM `INFORMATION_SCHEMA`.`COLUMNS` WHERE `TABLE_SCHEMA` = '" . ee()->db->database . "' AND `DATA_TYPE` REGEXP 'char|text' AND `CHARACTER_MAXIMUM_LENGTH` > 191 AND `COLUMN_KEY` <> '' AND TABLE_NAME != 'exp_pro_search_indexes' AND `COLUMN_NAME` NOT IN ('url_title', 'cat_group');");
if ($indicies->num_rows())
{
// check to see if the associated index is also over 191 characters
Expand Down
2 changes: 1 addition & 1 deletion emoji_support/upd.emoji_support.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function install()
{
ee('Model')->make('Module', [
'module_name' => 'Emoji_support',
'module_version' => '1.0.2',
'module_version' => '1.1.1',
'has_cp_backend' => TRUE,
'has_publish_fields' => FALSE
])->save();
Expand Down