get_charset_collate(); $tableName = "{$wpdb->prefix}give_revenue"; $sql = "CREATE TABLE {$tableName} ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, donation_id bigint UNSIGNED NOT NULL, form_id bigint UNSIGNED NOT NULL, amount int UNSIGNED NOT NULL, PRIMARY KEY (id) ) {$charset_collate};"; try { DB::delta($sql); } catch (DatabaseQueryException $exception) { throw new DatabaseMigrationException( 'An error occurred creating the revenue table: ' . print_r($exception->getQueryErrors(), true) ); } } }