Merge branch 'master' of http://git.roojs.com:8081/Pman.Core
authorElliott Polk <elliott.polk@thekaroshiworkshop.com>
Thu, 24 May 2012 09:51:39 +0000 (17:51 +0800)
committerElliott Polk <elliott.polk@thekaroshiworkshop.com>
Thu, 24 May 2012 09:51:39 +0000 (17:51 +0800)
mysql/core_ftpxferlog.sql [new file with mode: 0644]

diff --git a/mysql/core_ftpxferlog.sql b/mysql/core_ftpxferlog.sql
new file mode 100644 (file)
index 0000000..f4590dc
--- /dev/null
@@ -0,0 +1,14 @@
+CREATE TABLE core_ftpxferlog (
+  id INT NOT NULL AUTO_INCREMENT,
+  username VARCHAR(30) NOT NULL DEFAULT '',
+  filename text,
+  txsize BIGINT(20) DEFAULT NULL,
+  host tinytext,
+  ip tinytext,
+  action tinytext,
+  duration tinytext,
+  txlocaltime TIMESTAMP DEFAULT NULL,
+  success INT(1) NOT NULL DEFAULT 0,
+  PRIMARY KEY  (id),
+  KEY idx_usersucc (username, success)
+);