Skip to content

Commit 0eb893a

Browse files
committed
Update spire package
1 parent cb01e9b commit 0eb893a

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"ext-dom": "*",
2222
"assisted-mindfulness/naive-bayes": "0.0.7",
2323
"cagilo/cagilo": "^3.3",
24-
"esplora/spire": "0.0.2",
24+
"esplora/spire": "0.0.3",
2525
"guzzlehttp/guzzle": "^7.2",
2626
"hotwired-laravel/turbo-laravel": "2.0.1",
2727
"intervention/image": "^3.4",

composer.lock

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/database.php

+3
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
'database' => env('DB_DATABASE', database_path('database.sqlite')),
4242
'prefix' => '',
4343
'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
44+
'busy_timeout' => null,
45+
'journal_mode' => 'WAL',
46+
'synchronous' => 'normal',
4447
],
4548

4649
'mysql' => [

routes/console.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@
6969
],
7070
])->daily();
7171

72-
// Оптимизация SQLite каждую минуту смотри https://www.sqlite.org/pragma.html#pragma_optimize
73-
Facades\Schedule::command('sqlite:optimize')->everyMinute();
72+
// Оптимизация SQLite смотри https://www.sqlite.org/pragma.html#pragma_optimize
73+
Facades\Schedule::command('sqlite:optimize')->everyFourHours();
7474
Facades\Schedule::command('sqlite:vacuum')->everyFourHours();
7575

7676
// Перевод достижений каждую неделю по выходным

0 commit comments

Comments
 (0)