We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cd0d5b commit 679bfebCopy full SHA for 679bfeb
includes/tables/class-tests-table.php
@@ -4,7 +4,7 @@
4
5
class Tests_Table {
6
7
- const DB_VERSION = '1.4';
+ const DB_VERSION = '1.5';
8
const TABLE_NAME = 'vrts_tests';
9
10
/**
@@ -40,7 +40,7 @@ public static function install_table() {
40
);
41
}
42
43
- if ( $installed_version && version_compare( $installed_version, '2.0.2', '<' ) ) {
+ if ( $installed_version && version_compare( $installed_version, '1.5', '<' ) ) {
44
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching -- It's OK.
45
$wpdb->query(
46
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.SchemaChange, WordPress.DB.PreparedSQL.InterpolatedNotPrepared -- It's OK.
0 commit comments