Diff
Not logged in

Differences From:

File src/schema.c part of check-in [73bddaebb9] - The delta compress on xfer is working better now, but still needs work. by drh on 2007-08-09 17:42:59. [view]

To:

File src/schema.c part of check-in [32c639d086] - Reference to obsolete field vfile.parent removed. Fixed table reference in definition of table vfile. by aku on 2007-08-26 06:12:08. [view]

@@ -215,10 +215,8 @@
 @
 @ -- Each entry in the vfile table represents a single file or folder
 @ -- that is part of a version.
 @ --
-@ -- The vfile.parent field is 0 for the root folder.
-@ --
 @ -- The file.rid field is 0 for files or folders that have been
 @ -- added but not yet committed.
 @ --
 @ -- Vfile.chnged is 0 for unmodified files, 1 for files that have
@@ -231,9 +229,9 @@
 @ --
 @ --
 @ CREATE TABLE vfile(
 @   id INTEGER PRIMARY KEY,           -- ID of the checked out file
-@   vid INTEGER REFERENCES record,    -- The version this file is part of.
+@   vid INTEGER REFERENCES blob,      -- The version this file is part of.
 @   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