mysql/core_ftpxferlog.sql
authorElliott Polk <elliott.polk@thekaroshiworkshop.com>
Mon, 28 May 2012 06:09:58 +0000 (14:09 +0800)
committerElliott Polk <elliott.polk@thekaroshiworkshop.com>
Mon, 28 May 2012 06:09:58 +0000 (14:09 +0800)
mysql/core_ftpxferlog.sql [deleted file]

diff --git a/mysql/core_ftpxferlog.sql b/mysql/core_ftpxferlog.sql
deleted file mode 100644 (file)
index f4590dc..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-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)
-);