File "MariaDbSchemaState.php"
Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/laravel/framework/src/Illuminate/Database/Schema/MariaDbSchemaState.php
File size: 485 bytes
MIME-type: text/x-php
Charset: utf-8
<?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}"';
}
}