Skip to content

Commit 7e78e87

Browse files
Fix styling
1 parent 0c2dbea commit 7e78e87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BackupTablesService.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ protected function backupTablesForSqlite($newTableName, $table)
118118

119119
protected function backupTablesForForMysqlAndMariaDb($newTableName, $table): array
120120
{
121-
if($this->getMysqlVersion() >= Constants::VERSION_AFTER_STORED_AS_VIRTUAL_AS_SUPPORT){
121+
if ($this->getMysqlVersion() >= Constants::VERSION_AFTER_STORED_AS_VIRTUAL_AS_SUPPORT) {
122122
DB::statement(/**@lang MySQL**/ "CREATE TABLE $newTableName AS SELECT * FROM $table");
123123
DB::statement(/**@lang MySQL**/ "INSERT INTO $newTableName SELECT * FROM $table");
124124
}

0 commit comments

Comments
 (0)