SVN: toys/cvsstats/createdb.sql

pawelz pawelz at pld-linux.org
Sun Feb 28 01:55:28 CET 2010


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
+)


More information about the pld-cvs-commit mailing list