Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
sitepress-multilingual-cms
/
classes
/
upgrade
/
commands
:
AddPrimaryKeyToLocaleMap.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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' ]; } }