We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c33792 commit d1dc038Copy full SHA for d1dc038
src/Illuminate/Database/Schema/SqliteSchemaState.php
@@ -16,11 +16,11 @@ class SqliteSchemaState extends SchemaState
16
*/
17
public function dump(Connection $connection, $path)
18
{
19
- ($process = $this->makeProcess(
20
- $this->baseCommand().' ".schema --indent"'
21
- ))->setTimeout(null)->mustRun(null, array_merge($this->baseVariables($this->connection->getConfig()), [
22
- //
23
- ]));
+ $process = $this->makeProcess($this->baseCommand().' ".schema --indent"')
+ ->setTimeout(null)
+ ->mustRun(null, array_merge($this->baseVariables($this->connection->getConfig()), [
+ //
+ ]));
24
25
$migrations = preg_replace('/CREATE TABLE sqlite_.+?\);[\r\n]+/is', '', $process->getOutput());
26
0 commit comments