chiark
/
gitweb
/
~ijackson
/
d.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
print doms
[d.git]
/
schema
1
CREATE TABLE addrs (
2
localpart STRING PRIMARY KEY,
3
user STRING NOT NULL,
4
redirect STRING
5
);
6
CREATE TABLE disabled_users (
7
user STRING PRIMARY KEY
8
);
9
CREATE INDEX addr_users ON addrs (user, localpart);