Files
by/config/db/migrate/20260303200000_enable_sqlite_wal.rb

12 lines
208 B
Ruby

Sequel.migration do
up do
run "PRAGMA journal_mode = WAL;"
run "PRAGMA synchronous = NORMAL;"
end
down do
run "PRAGMA journal_mode = DELETE;"
run "PRAGMA synchronous = FULL;"
end
end