/home/techb158/public_html/wp-content/plugins/kirki/database/migrations
Edit: /home/techb158/public_html/wp-content/plugins/kirki/database/migrations/CreateCmReferenceTable.php (901B)
id();
$table->unsigned_big_integer('post_id');
$table->string('field_meta_key');
$table->unsigned_big_integer('ref_post_id');
$table->index('post_id');
$table->index('ref_post_id');
$table->foreign('post_id')->references('ID')->on('posts')->cascade_on_delete();
$table->foreign('ref_post_id')->references('ID')->on('posts')->cascade_on_delete();
});
}
public function down()
{
Schema::drop_if_exists('kirki_cm_reference');
}
}