Overview
SHA1 Hash: | 32c639d08692e5f16b69e80c6ba454fff5b4a413 |
---|---|
Date: | 2007-08-26 06:12:08 |
User: | aku |
Comment: | Reference to obsolete field vfile.parent removed. Fixed table reference in definition of table vfile. |
Timelines: | ancestors | descendants | both | trunk |
Other Links: | files | ZIP archive | manifest |
Tags And Properties
- branch=trunk inherited from [a28c83647d]
- sym-trunk inherited from [a28c83647d]
Changes
[hide diffs]Modified src/schema.c from [14ace4fdfb] to [4ba2fd38a2].
@@ -214,12 +214,10 @@ @ ); @ @ -- 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 @ -- been edited or which have been subjected to a 3-way merge. @@ -230,11 +228,11 @@ @ -- is already in the repository. @ -- @ -- @ 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 @ pathname TEXT, -- Full pathname