projects
/
backups
/
.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merging stuff from ecbaldwin.net
[backups/.git]
/
schema.sql
1
CREATE TABLE filedata (
2
filetype CHAR,
3
permissions VARCHAR,
4
username VARCHAR,
5
groupname VARCHAR,
6
filesize INTEGER,
7
modified_date INTEGER, -- e.g. 20051016194000 for Oct 10, 2005 at 7:40pm
8
filename VARCHAR,
9
last_backup_date INTEGER -- same format as modified_date
10
);
11
12
CREATE UNIQUE INDEX filename ON filedata( filename );