Skip to content

Commit d5fe89e

Browse files
committed
docs: adjusts docs
1 parent 5bc18b7 commit d5fe89e

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@ This will publish a migration that apply defaults like so:
3535
```SQL
3636
PRAGMA journal_mode = WAL;
3737
PRAGMA synchronous = NORMAL;
38-
... etc
38+
PRAGMA page_size = 32768;
39+
PRAGMA cache_size = -20000;
40+
PRAGMA auto_vacuum = incremental;
41+
// etc...
3942
```
4043

4144
Next, you simply need to run the migration:

src/Commands/DbOptimizeCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ public function handle(): void
3838
}
3939

4040
$this->components->warn('Please validate the migration before running it in production. It may contain settings that are not compatible with your application.');
41-
$this->components->info('Once validated, you may run `php artisan migrate` to apply the migration.');
41+
$this->components->info('Once validated, you may run [php artisan migrate] to apply the migration.');
4242
}
4343
}

0 commit comments

Comments
 (0)