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

namespace WPML\Upgrade\Commands;

class AddStringPackageIdIndexToStrings extends AddIndexToTable {

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

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

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