Differences From:
File
src/schema.c
part of check-in
[41cf3e7c1d]
- Remove string_xform.c from the makefile. Require a "sym-" prefix on
tags used to name baselines or branches. The prefix is omitted when
the tag is used for this purpose; it is only there to avoid ambiguity
with other built-in tag names.
by
drh on
2008-02-06 03:05:42.
[view]
To:
File
src/schema.c
part of check-in
[33c31f73cd]
- Record whether or not files have their execute permission bit set.
Set or clear the execute permission bit upon checkout.
by
drh on
2008-02-21 14:27:34.
Also file
src/schema.c
part of check-in
[588bb7cd73]
- Merged to ed26056bb5.
by
aku on
2008-02-24 18:50:35.
[view]
@@ -300,9 +300,9 @@
@ --
@ --
@ CREATE TABLE vfile(
@ id INTEGER PRIMARY KEY, -- ID of the checked out file
-@ vid INTEGER REFERENCES blob, -- The version this file is part of.
+@ 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
@@ -321,20 +321,5 @@
@ merge INTEGER, -- Merged with this record
@ UNIQUE(id, merge)
@ );
@
-;
-
-const char zServerTempSchema[] =
-@ -- A copy of the vfile table schema used by the WWW server
-@ --
-@ CREATE TEMP TABLE vfile(
-@ id INTEGER PRIMARY KEY, -- ID of the checked out file
-@ vid INTEGER REFERENCES record, -- 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
-@ UNIQUE(pathname,vid)
-@ );
;