Sindbad~EG File Manager
<?php
namespace WPForms\Pro\Migrations;
use WPForms\Migrations\UpgradeBase;
/**
* Class v1.3.3 upgrade for Pro.
*
* @since 1.7.5
*
* @noinspection PhpUnused
*/
class Upgrade133 extends UpgradeBase {
/**
* Add user_uuid column to the entries table.
*
* @since 1.7.5
*
* @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).
*/
public function run() {
global $wpdb;
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.NoCaching
$column = $wpdb->get_col( "SHOW COLUMNS FROM {$wpdb->prefix}wpforms_entries LIKE 'user_uuid'" );
if ( ! empty( $column[0] ) ) {
return true;
}
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.NoCaching, WordPress.DB.DirectDatabaseQuery.SchemaChange
$wpdb->query( "ALTER TABLE {$wpdb->prefix}wpforms_entries ADD user_uuid VARCHAR(36)" );
return true;
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists