Fossil SCM
Reference to obsolete field vfile.parent removed. Fixed table reference in definition of table vfile.
Commit
32c639d08692e5f16b69e80c6ba454fff5b4a413
Parent
452a71f40bf7c16…
1 file changed
+1
-3
+1
-3
| --- src/schema.c | ||
| +++ src/schema.c | ||
| @@ -214,12 +214,10 @@ | ||
| 214 | 214 | @ ); |
| 215 | 215 | @ |
| 216 | 216 | @ -- Each entry in the vfile table represents a single file or folder |
| 217 | 217 | @ -- that is part of a version. |
| 218 | 218 | @ -- |
| 219 | -@ -- The vfile.parent field is 0 for the root folder. | |
| 220 | -@ -- | |
| 221 | 219 | @ -- The file.rid field is 0 for files or folders that have been |
| 222 | 220 | @ -- added but not yet committed. |
| 223 | 221 | @ -- |
| 224 | 222 | @ -- Vfile.chnged is 0 for unmodified files, 1 for files that have |
| 225 | 223 | @ -- been edited or which have been subjected to a 3-way merge. |
| @@ -230,11 +228,11 @@ | ||
| 230 | 228 | @ -- is already in the repository. |
| 231 | 229 | @ -- |
| 232 | 230 | @ -- |
| 233 | 231 | @ CREATE TABLE vfile( |
| 234 | 232 | @ id INTEGER PRIMARY KEY, -- ID of the checked out file |
| 235 | -@ vid INTEGER REFERENCES record, -- The version this file is part of. | |
| 233 | +@ vid INTEGER REFERENCES blob, -- The version this file is part of. | |
| 236 | 234 | @ chnged INT DEFAULT 0, -- 0:unchnged 1:edited 2:m-chng 3:m-add |
| 237 | 235 | @ deleted BOOLEAN DEFAULT 0, -- True if deleted |
| 238 | 236 | @ rid INTEGER, -- Originally from this repository record |
| 239 | 237 | @ mrid INTEGER, -- Based on this record due to a merge |
| 240 | 238 | @ pathname TEXT, -- Full pathname |
| 241 | 239 |
| --- src/schema.c | |
| +++ src/schema.c | |
| @@ -214,12 +214,10 @@ | |
| 214 | @ ); |
| 215 | @ |
| 216 | @ -- Each entry in the vfile table represents a single file or folder |
| 217 | @ -- that is part of a version. |
| 218 | @ -- |
| 219 | @ -- The vfile.parent field is 0 for the root folder. |
| 220 | @ -- |
| 221 | @ -- The file.rid field is 0 for files or folders that have been |
| 222 | @ -- added but not yet committed. |
| 223 | @ -- |
| 224 | @ -- Vfile.chnged is 0 for unmodified files, 1 for files that have |
| 225 | @ -- been edited or which have been subjected to a 3-way merge. |
| @@ -230,11 +228,11 @@ | |
| 230 | @ -- is already in the repository. |
| 231 | @ -- |
| 232 | @ -- |
| 233 | @ CREATE TABLE vfile( |
| 234 | @ id INTEGER PRIMARY KEY, -- ID of the checked out file |
| 235 | @ vid INTEGER REFERENCES record, -- The version this file is part of. |
| 236 | @ chnged INT DEFAULT 0, -- 0:unchnged 1:edited 2:m-chng 3:m-add |
| 237 | @ deleted BOOLEAN DEFAULT 0, -- True if deleted |
| 238 | @ rid INTEGER, -- Originally from this repository record |
| 239 | @ mrid INTEGER, -- Based on this record due to a merge |
| 240 | @ pathname TEXT, -- Full pathname |
| 241 |
| --- src/schema.c | |
| +++ src/schema.c | |
| @@ -214,12 +214,10 @@ | |
| 214 | @ ); |
| 215 | @ |
| 216 | @ -- Each entry in the vfile table represents a single file or folder |
| 217 | @ -- that is part of a version. |
| 218 | @ -- |
| 219 | @ -- The file.rid field is 0 for files or folders that have been |
| 220 | @ -- added but not yet committed. |
| 221 | @ -- |
| 222 | @ -- Vfile.chnged is 0 for unmodified files, 1 for files that have |
| 223 | @ -- been edited or which have been subjected to a 3-way merge. |
| @@ -230,11 +228,11 @@ | |
| 228 | @ -- is already in the repository. |
| 229 | @ -- |
| 230 | @ -- |
| 231 | @ CREATE TABLE vfile( |
| 232 | @ id INTEGER PRIMARY KEY, -- ID of the checked out file |
| 233 | @ vid INTEGER REFERENCES blob, -- The version this file is part of. |
| 234 | @ chnged INT DEFAULT 0, -- 0:unchnged 1:edited 2:m-chng 3:m-add |
| 235 | @ deleted BOOLEAN DEFAULT 0, -- True if deleted |
| 236 | @ rid INTEGER, -- Originally from this repository record |
| 237 | @ mrid INTEGER, -- Based on this record due to a merge |
| 238 | @ pathname TEXT, -- Full pathname |
| 239 |