repo.or.cz
/
fbfp.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Switch to plain database/sql and sqlite3
[fbfp.git]
/
schema.sql
blob
7e3886fcd3938a4ee49a36b7ee294b52d41f3189
1
CREATE TABLE users (
2
id TEXT PRIMARY KEY NOT NULL,
3
name TEXT,
4
email TEXT
5
);
6
CREATE TABLE sessions (
7
userid TEXT NOT NULL,
8
cookie TEXT,
9
expr INTEGER,
10
FOREIGN KEY(userid) REFERENCES users(id)
11
);