Author: pawelz Date: Sun Feb 28 01:55:27 2010 New Revision: 11216 Added: toys/cvsstats/createdb.sql Log: - initial db creation script
Added: toys/cvsstats/createdb.sql ============================================================================== --- (empty file) +++ toys/cvsstats/createdb.sql Sun Feb 28 01:55:27 2010 @@ -0,0 +1,19 @@ +CREATE TABLE files ( + filename VARCHAR(255), + date DATETIME, + author VARCHAR(255), + tag VARCHAR(255), + hunks INTEGER, + added INTEGER, + removed INTEGER +); + +CREATE TABLE commits ( + author VARCHAR(255), + date DATETIME, + tag VARCHAR(255), + files INTEGER, + hunks INTEGER, + added INTEGER, + removed INTEGER +) _______________________________________________ pld-cvs-commit mailing list [email protected] http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
