PATH:
home
/
letacommog
/
menuiserie-convert
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
config
/
migrations
<?php /** * Yoast SEO Plugin File. * * @package WPSEO\Migrations */ use Yoast\WP\Lib\Model; use YoastSEO_Vendor\Ruckusing_Migration_Base; /** * Class AddCollationToTables */ class AddCollationToTables extends Ruckusing_Migration_Base { /** * Migration up. */ public function up() { global $wpdb; $charset_collate = $wpdb->get_charset_collate(); if ( empty( $charset_collate ) ) { return; } $tables = [ Model::get_table_name( 'migrations' ), Model::get_table_name( 'Indexable' ), Model::get_table_name( 'Indexable_Hierarchy' ), Model::get_table_name( 'Primary_Term' ), ]; foreach ( $tables as $table ) { $this->query( 'ALTER TABLE ' . $table . ' CONVERT TO ' . str_replace( 'DEFAULT ', '', $charset_collate ) ); } } /** * Migration down. */ public function down() { // No down required. } }
[+]
..
[-] 20171228151841_WpYoastPrimaryTerm.php
[edit]
[-] 20200430075614_AddIndexableObjectIdAndTypeIndex.php
[edit]
[-] 20200428123747_BreadcrumbTitleAndHierarchyReset.php
[edit]
[-] 20200429105310_TruncateIndexableTables.php
[edit]
[-] 20200430150130_ClearIndexableTables.php
[edit]
[-] 20200408101900_AddCollationToTables.php
[edit]
[-] 20190529075038_WpYoastDropIndexableMetaTableIfExists.php
[edit]
[-] 20200420073606_AddColumnsToIndexables.php
[edit]
[-] 20191011111109_WpYoastIndexableHierarchy.php
[edit]
[+]
ruckusing
[-] 20200507054848_DeleteDuplicateIndexables.php
[edit]
[-] 20200428194858_ExpandIndexableColumnLengths.php
[edit]
[-] 20171228151840_WpYoastIndexable.php
[edit]