<?php
namespace Yoast\WP\SEO\Config\Migrations;
use Yoast\WP\Lib\Migrations\Migration;
use Yoast\WP\Lib\Model;
class WpYoastIndexable extends Migration {
public static $plugin = 'free';
public function up() {
$this->add_table();
}
public function down() {
$this->drop_table( $this->get_table_name() );
}
private function add_table() {
$table_name = $this->get_table_name();