Files
distant-horizons-sharded/cleanroom/src/main/resources/sqlScripts/0030-sqlite-changeTableJournaling.sql
T
2026-03-11 09:20:32 +01:00

10 lines
320 B
SQL

-- this PRAGMA will automatically commit, so we have to disable
-- DH's automatic transactions, otherwise the connection will throw an error
--No Transactions--
-- James ran into some issues where Windows had trouble deleting the Journal file,
-- using TRUNCATE should fix that issue
PRAGMA journal_mode = TRUNCATE;