DataObjects/Ftp_xferlog.php
authorElliott Polk <elliott.polk@thekaroshiworkshop.com>
Thu, 31 May 2012 05:54:26 +0000 (13:54 +0800)
committerElliott Polk <elliott.polk@thekaroshiworkshop.com>
Thu, 31 May 2012 05:54:26 +0000 (13:54 +0800)
DataObjects/Ftp_xferlog.php

index e69de29..2cfec8f 100644 (file)
@@ -0,0 +1,28 @@
+<?php
+/**
+ * Table Definition for ftp_xferlog
+ */
+require_once 'DB/DataObject.php';
+
+class Pman_Ftp_DataObjects_Ftp_xferlog extends DB_DataObject 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__table = 'ftp_xferlog';         // table name
+    public $id;                              // int(11)  not_null primary_key auto_increment
+    public $username;                        // string(30)  not_null multiple_key
+    public $filename;                        // blob(65535)  blob
+    public $size;                            // int(20)  
+    public $host;                            // blob(255)  blob
+    public $ip;                              // blob(255)  blob
+    public $action;                          // blob(255)  blob
+    public $duration;                        // blob(255)  blob
+    public $localtime;                       // timestamp(19)  unsigned zerofill binary
+    public $success;                         // int(1)  not_null
+    public $isnew;                           // int(1)  not_null
+
+    
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}