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

namespace WPML\Upgrade\Commands;

class AddPrimaryKeyToLocaleMap extends AddPrimaryKeyToTable {

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

	protected function get_key_name() {
		return 'PRIMARY';
	}

	protected function get_key_columns() {
		return [ 'code', 'locale' ];
	}
}