Skip to content

Commit

Permalink
style: clean up code
Browse files Browse the repository at this point in the history
  • Loading branch information
Paco committed Feb 10, 2025
1 parent b95b794 commit 76516f5
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions core/base/update/updates.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,19 @@
$updates->$v->update_from_minor = 0;

// Re-index and vacuum tables
$updates->$v->SQL_update[] = PHP_EOL.sanitize_query('
$updates->$v->SQL_update[] = PHP_EOL.sanitize_query('
REINDEX TABLE public.matrix_dd;
');
$updates->$v->SQL_update[] = PHP_EOL.sanitize_query('
REINDEX TABLE public.jer_dd;
');
$updates->$v->SQL_update[] = PHP_EOL.sanitize_query('
$updates->$v->SQL_update[] = PHP_EOL.sanitize_query('
VACUUM FULL VERBOSE ANALYZE public.matrix_dd;
');
$updates->$v->SQL_update[] = PHP_EOL.sanitize_query('
VACUUM FULL VERBOSE ANALYZE public.jer_dd;
');
$updates->$v->SQL_update[] = PHP_EOL.sanitize_query('
VACUUM FULL VERBOSE ANALYZE public.matrix_activity;
');

Expand Down

0 comments on commit 76516f5

Please sign in to comment.