namespace WPForms\Migrations;
* @noinspection PhpUnused
class Upgrade159 extends UpgradeBase {
* Create tasks_meta table.
* @return bool|null Upgrade result:
* true - the upgrade completed successfully,
* false - in the case of failure,
* null - upgrade started but not yet finished (background task).
$meta = wpforms()->obj( 'tasks_meta' );
// Create the table if it doesn't exist.
if ( ! $meta->table_exists() ) {