117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
@ -- Each entry in the ALIAS table provides an alternative name by which an
@ -- artifact can be called.
@ --
@ CREATE TABLE alias(
@ hval TEXT, -- Hex-encoded hash value
@ htype ANY, -- Type of hash.
@ rid INTEGER REFERENCES blob, -- Blob that this hash names
@ PRIMARY KEY(hval,htype,id)
@ ) WITHOUT ROWID;
@ CREATE INDEX alias_rid ON alias(rid);
@
@ -- Information about users
@ --
@ -- The user.pw field can be either cleartext of the password, or
@ -- a SHA1 hash of the password. If the user.pw field is exactly 40
|
|
|
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
@ -- Each entry in the ALIAS table provides an alternative name by which an
@ -- artifact can be called.
@ --
@ CREATE TABLE alias(
@ hval TEXT, -- Hex-encoded hash value
@ htype ANY, -- Type of hash.
@ rid INTEGER REFERENCES blob, -- Blob that this hash names
@ PRIMARY KEY(hval,htype,rid)
@ ) WITHOUT ROWID;
@ CREATE INDEX alias_rid ON alias(rid);
@
@ -- Information about users
@ --
@ -- The user.pw field can be either cleartext of the password, or
@ -- a SHA1 hash of the password. If the user.pw field is exactly 40
|