From aa35bc6e6dad7165eaa69f1e9b3def8b07444ca5 Mon Sep 17 00:00:00 2001 From: Andrew Ruthven Date: Tue, 30 Apr 2024 20:38:38 +1200 Subject: [PATCH] Require the latest DB version --- inc/always.php.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/always.php.in b/inc/always.php.in index a660f079..e9ead53f 100644 --- a/inc/always.php.in +++ b/inc/always.php.in @@ -326,7 +326,7 @@ $_SERVER['SERVER_NAME'] = $c->domain_name; require_once('AwlQuery.php'); -$c->want_dbversion = array(1,2,9); +$c->want_dbversion = array(1,3,6); $c->schema_version = 0; $qry = new AwlQuery( 'SELECT schema_major, schema_minor, schema_patch FROM awl_db_revision ORDER BY schema_id DESC LIMIT 1;' ); if ( $qry->Exec('always',__LINE__,__FILE__) && $row = $qry->Fetch() ) {