148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
-
+
-
|
pid INTEGER NOT NULL REFERENCES symbol, -- Possible parent of sid
UNIQUE (sid, pid)
}
state writing meta {
mid INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
pid INTEGER NOT NULL REFERENCES project, -- project the commit was on
bid INTEGER NOT NULL REFERENCES symbol, -- branch the commit was on
bid INTEGER REFERENCES symbol, -- branch the commit was on, NULL for :trunk:
aid INTEGER NOT NULL REFERENCES author,
cid INTEGER NOT NULL REFERENCES cmessage,
UNIQUE (pid, bid, aid, cid)
}
# Author and commit message information is fully global,
# i.e. per repository.
state writing author {
|