swoole-framwork/vendor/illuminate/database/Schema/MariaDbSchemaState.php

19 lines
485 B
PHP
Raw Normal View History

2024-05-20 11:51:07 +08:00
<?php
namespace Illuminate\Database\Schema;
class MariaDbSchemaState extends MySqlSchemaState
{
/**
* Get the base dump command arguments for MariaDB as a string.
*
* @return string
*/
protected function baseDumpCommand()
{
$command = 'mysqldump '.$this->connectionString().' --no-tablespaces --skip-add-locks --skip-comments --skip-set-charset --tz-utc --column-statistics=0';
return $command.' "${:LARAVEL_LOAD_DATABASE}"';
}
}