Differences From:
File
src/schema.c
part of check-in
[024859fff2]
- Provide a default ticket report format: "All Tickets".
Ticket 86eb5f92f5
by
drh on
2008-11-26 02:03:44.
[view]
To:
File
src/schema.c
part of check-in
[2dffce041d]
- Add the ability to detect file changes using only the mtime. This is turned
on using the "fossil setting mtime-changes ON" command. It is off by default,
but it does make many operations go much faster, especially on large
repositories, so we might want to start turning it on by default.
by
drh on
2008-12-06 18:02:21.
[view]
@@ -381,8 +381,9 @@
@ chnged INT DEFAULT 0, -- 0:unchnged 1:edited 2:m-chng 3:m-add
@ deleted BOOLEAN DEFAULT 0, -- True if deleted
@ rid INTEGER, -- Originally from this repository record
@ mrid INTEGER, -- Based on this record due to a merge
+@ mtime INTEGER, -- Modification time of file on disk
@ pathname TEXT, -- Full pathname relative to root
@ origname TEXT, -- Original pathname. NULL if unchanged
@ UNIQUE(pathname,vid)
@ );