Files
doitinpoland.com/wp-content/plugins/sitepress-multilingual-cms/classes/upgrade/commands/AddContextIndexToStrings.php
2023-09-12 21:41:04 +02:00

19 lines
295 B
PHP

<?php
namespace WPML\Upgrade\Commands;
class AddContextIndexToStrings extends AddIndexToTable {
protected function get_table() {
return 'icl_strings';
}
protected function get_index() {
return 'context';
}
protected function get_index_definition() {
return '( `context` )';
}
}