We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6c3da1b + 35c685b commit 7669745Copy full SHA for 7669745
README.md
@@ -42,10 +42,10 @@ This will publish a migration that apply defaults like so:
42
DB::statement('PRAGMA page_size = 32768;');
43
DB::statement('PRAGMA cache_size = -20000;');
44
DB::statement('PRAGMA auto_vacuum = incremental;');
45
+ DB::statement('PRAGMA foreign_keys = ON;');
46
47
// etc...
48
}
-};
49
```
50
51
Next, you simply need to run the migration:
database/migrations/optimize_database_settings.php.stub
@@ -17,6 +17,7 @@ return new class extends Migration
17
18
19
20
21
22
23
};
0 commit comments