64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
+
-
+
-
+
|
files. This is not an interface spec and hence subject to change.)</i>
Unversioned content is stored in the repository in the
"unversioned" table:
<blockquote><pre>
CREATE TABLE unversioned(
uvid INTEGER PRIMARY KEY AUTOINCREMENT, -- unique ID for this file
name TEXT PRIMARY KEY, -- Name of the file
name TEXT UNIQUE, -- Name of the file
rcvid INTEGER, -- From whence this file was received
mtime DATETIME, -- Last change (seconds since 1970)
hash TEXT, -- SHA1 hash of uncompressed content
sz INTEGER, -- Size of uncompressed content
encoding INT, -- 0: plaintext 1: zlib compressed
content BLOB -- File content
) WITHOUT ROWID;
);
</pre></blockquote>
If there are no unversioned files in the repository, then the
"unversioned" table does not necessarily exist.
A simple way to purge all unversioned content from a repository
is to run:
|