Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Add missing comma in CREATE TABLE vfile ... |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
c66ffba6da9ed22a0ca20ff57b677a8b |
| User & Date: | eric 2008-11-10 19:54:53.000 |
References
|
2008-11-15
| ||
| 06:44 | • New ticket [4f6b211d6b] some new wikis not visible as wiki. artifact: fa1291780f user: anonymous | |
|
2008-11-10
| ||
| 21:13 | • Fixed ticket [874d5360fc]: Opening a repository gives a runtime error. plus 2 other changes artifact: ea8ca4435f user: drh | |
Context
|
2008-11-11
| ||
| 03:50 | doc changes -- spelling corrections and embedded ref pages. check-in: 9eb6ea75c1 user: kejoki tags: trunk | |
|
2008-11-10
| ||
| 19:54 | Add missing comma in CREATE TABLE vfile ... check-in: c66ffba6da user: eric tags: trunk | |
| 01:13 | The "ui" and "server" commands no longer quit if they cannot open TCP port 8080. They keep trying with consecutive ports until they find one that works - up to 100 ports. check-in: d8ceb4ad47 user: drh tags: trunk | |
Changes
Changes to src/schema.c.
| ︙ | ︙ | |||
359 360 361 362 363 364 365 | @ id INTEGER PRIMARY KEY, -- ID of the checked out file @ vid INTEGER REFERENCES blob, -- The baseline 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 relative to root | | | 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 | @ id INTEGER PRIMARY KEY, -- ID of the checked out file @ vid INTEGER REFERENCES blob, -- The baseline 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 relative to root @ origname TEXT, -- Original pathname. NULL if unchanged @ UNIQUE(pathname,vid) @ ); @ @ -- This table holds a record of uncommitted merges in the local @ -- file tree. If a VFILE entry with id has merged with another @ -- record, there is an entry in this table with (id,merge) where @ -- merge is the RECORD table entry that the file merged against. |
| ︙ | ︙ |