cleanup log before test runs
[cloudstore.git] / cloudstore.sql
1 -- drop database cloudstore;
2 -- create database cloudstore;
3 drop table log;
4 create table log (
5         timestamp timestamp, -- 2011/07/16 09:45:32
6         ip inet, -- 127.0.0.1
7         login text, -- dpavlin
8         host text, -- localhost
9         op text, -- recv
10         file text, -- :foo
11         pid int, -- 906
12         len int, -- 9334
13         transfered int, -- 9374
14         mtime timestamp, -- 2011/07/16-09:45:32
15         perms text, -- rw-r--r--
16         updated text -- >f+++++++++
17 );