root/HTTP/Finder.ddl

Revision 1474 (checked in by rsz, 5 days ago)

cleanup

Line 
1 [ 1 ] =
2 [[
3     pragma [v:partition].encoding = 'utf-8'
4 ]],
5
6 [ 2 ] =
7 [[
8     pragma [v:partition].journal_mode = delete
9 ]],
10
11 [ 3 ] =
12 [[
13     pragma [v:partition].legacy_file_format = off
14 ]],
15
16 [ 4 ] =
17 [[
18     pragma [v:partition].synchronous = off
19 ]],
20
21 [ 5 ] =
22 [[
23     pragma [v:partition].temp_store = memory
24 ]],
25
26 [ 6 ] =
27 [[
28     create temporary table if not exists hit
29     (
30         name    text not null,
31         extract text not null
32     )
33 ]]
Note: See TracBrowser for help on using the browser.