Edit File by line
/home/barbar84/www/wp-conte.../plugins/wordpres.../src/config/migratio...
File: 20200428194858_ExpandIndexableColumnLengths.php
<?php
[0] Fix | Delete
[1] Fix | Delete
namespace Yoast\WP\SEO\Config\Migrations;
[2] Fix | Delete
[3] Fix | Delete
use Yoast\WP\Lib\Migrations\Migration;
[4] Fix | Delete
use Yoast\WP\Lib\Model;
[5] Fix | Delete
[6] Fix | Delete
/**
[7] Fix | Delete
* Class ExpandIndexableColumnLengths.
[8] Fix | Delete
*/
[9] Fix | Delete
class ExpandIndexableColumnLengths extends Migration {
[10] Fix | Delete
[11] Fix | Delete
/**
[12] Fix | Delete
* The plugin this migration belongs to.
[13] Fix | Delete
*
[14] Fix | Delete
* @var string
[15] Fix | Delete
*/
[16] Fix | Delete
public static $plugin = 'free';
[17] Fix | Delete
[18] Fix | Delete
/**
[19] Fix | Delete
* Migration up.
[20] Fix | Delete
*/
[21] Fix | Delete
public function up() {
[22] Fix | Delete
$this->change_column( $this->get_table_name(), 'title', 'text', [ 'null' => true ] );
[23] Fix | Delete
$this->change_column( $this->get_table_name(), 'open_graph_title', 'text', [ 'null' => true ] );
[24] Fix | Delete
$this->change_column( $this->get_table_name(), 'twitter_title', 'text', [ 'null' => true ] );
[25] Fix | Delete
$this->change_column( $this->get_table_name(), 'open_graph_image_source', 'text', [ 'null' => true ] );
[26] Fix | Delete
$this->change_column( $this->get_table_name(), 'twitter_image_source', 'text', [ 'null' => true ] );
[27] Fix | Delete
}
[28] Fix | Delete
[29] Fix | Delete
/**
[30] Fix | Delete
* Migration down.
[31] Fix | Delete
*/
[32] Fix | Delete
public function down() {
[33] Fix | Delete
$attr_limit_191 = [
[34] Fix | Delete
'null' => true,
[35] Fix | Delete
'limit' => 191,
[36] Fix | Delete
];
[37] Fix | Delete
[38] Fix | Delete
$this->change_column(
[39] Fix | Delete
$this->get_table_name(),
[40] Fix | Delete
'title',
[41] Fix | Delete
'string',
[42] Fix | Delete
$attr_limit_191
[43] Fix | Delete
);
[44] Fix | Delete
$this->change_column(
[45] Fix | Delete
$this->get_table_name(),
[46] Fix | Delete
'opengraph_title',
[47] Fix | Delete
'string',
[48] Fix | Delete
$attr_limit_191
[49] Fix | Delete
);
[50] Fix | Delete
$this->change_column(
[51] Fix | Delete
$this->get_table_name(),
[52] Fix | Delete
'twitter_title',
[53] Fix | Delete
'string',
[54] Fix | Delete
$attr_limit_191
[55] Fix | Delete
);
[56] Fix | Delete
$this->change_column(
[57] Fix | Delete
$this->get_table_name(),
[58] Fix | Delete
'open_graph_image_source',
[59] Fix | Delete
'string',
[60] Fix | Delete
$attr_limit_191
[61] Fix | Delete
);
[62] Fix | Delete
$this->change_column(
[63] Fix | Delete
$this->get_table_name(),
[64] Fix | Delete
'twitter_image_source',
[65] Fix | Delete
'string',
[66] Fix | Delete
$attr_limit_191
[67] Fix | Delete
);
[68] Fix | Delete
}
[69] Fix | Delete
[70] Fix | Delete
/**
[71] Fix | Delete
* Retrieves the table name to use for storing indexables.
[72] Fix | Delete
*
[73] Fix | Delete
* @return string The table name to use.
[74] Fix | Delete
*/
[75] Fix | Delete
protected function get_table_name() {
[76] Fix | Delete
return Model::get_table_name( 'Indexable' );
[77] Fix | Delete
}
[78] Fix | Delete
}
[79] Fix | Delete
[80] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function