• File: AddStatusIndexToStringTranslations.php
  • Full Path: /home/lef/public_html/wp-content/plugins/sitepress-multilingual-cms/classes/upgrade/commands/AddStatusIndexToStringTranslations.php
  • File size: 315 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace WPML\Upgrade\Commands;

class AddStatusIndexToStringTranslations extends AddIndexToTable {

	protected function get_table() {
		return 'icl_string_translations';
	}

	protected function get_index() {
		return 'status';
	}

	protected function get_index_definition() {
		return '( `status` )';
	}
}