Fossil SCM
schema change to support "nop". Repos will need to be rebuilt to use this functionality.
Commit
efc9e1c3b4bb5b20275a580bc2ce7af847b2632e
Parent
cb14ab18092fa87…
1 file changed
+1
+1
| --- src/schema.c | ||
| +++ src/schema.c | ||
| @@ -415,10 +415,11 @@ | ||
| 415 | 415 | @ -- |
| 416 | 416 | @ -- |
| 417 | 417 | @ CREATE TABLE vfile( |
| 418 | 418 | @ id INTEGER PRIMARY KEY, -- ID of the checked out file |
| 419 | 419 | @ vid INTEGER REFERENCES blob, -- The baseline this file is part of. |
| 420 | +@ nop BOOLEAN DEFAULT 0, -- True if no operation to be performed. User toggled. | |
| 420 | 421 | @ chnged INT DEFAULT 0, -- 0:unchnged 1:edited 2:m-chng 3:m-add |
| 421 | 422 | @ deleted BOOLEAN DEFAULT 0, -- True if deleted |
| 422 | 423 | @ isexe BOOLEAN, -- True if file should be executable |
| 423 | 424 | @ rid INTEGER, -- Originally from this repository record |
| 424 | 425 | @ mrid INTEGER, -- Based on this record due to a merge |
| 425 | 426 |
| --- src/schema.c | |
| +++ src/schema.c | |
| @@ -415,10 +415,11 @@ | |
| 415 | @ -- |
| 416 | @ -- |
| 417 | @ CREATE TABLE vfile( |
| 418 | @ id INTEGER PRIMARY KEY, -- ID of the checked out file |
| 419 | @ vid INTEGER REFERENCES blob, -- The baseline this file is part of. |
| 420 | @ chnged INT DEFAULT 0, -- 0:unchnged 1:edited 2:m-chng 3:m-add |
| 421 | @ deleted BOOLEAN DEFAULT 0, -- True if deleted |
| 422 | @ isexe BOOLEAN, -- True if file should be executable |
| 423 | @ rid INTEGER, -- Originally from this repository record |
| 424 | @ mrid INTEGER, -- Based on this record due to a merge |
| 425 |
| --- src/schema.c | |
| +++ src/schema.c | |
| @@ -415,10 +415,11 @@ | |
| 415 | @ -- |
| 416 | @ -- |
| 417 | @ CREATE TABLE vfile( |
| 418 | @ id INTEGER PRIMARY KEY, -- ID of the checked out file |
| 419 | @ vid INTEGER REFERENCES blob, -- The baseline this file is part of. |
| 420 | @ nop BOOLEAN DEFAULT 0, -- True if no operation to be performed. User toggled. |
| 421 | @ chnged INT DEFAULT 0, -- 0:unchnged 1:edited 2:m-chng 3:m-add |
| 422 | @ deleted BOOLEAN DEFAULT 0, -- True if deleted |
| 423 | @ isexe BOOLEAN, -- True if file should be executable |
| 424 | @ rid INTEGER, -- Originally from this repository record |
| 425 | @ mrid INTEGER, -- Based on this record due to a merge |
| 426 |