12 lines
208 B
Ruby
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
|