mysql/ftp_xferlog.sql
[Pman.Ftp] / DataObjects / Ftp_xferlog.php
1 <?php
2 /**
3  * Table Definition for ftp_xferlog
4  */
5 require_once 'DB/DataObject.php';
6
7 class Pman_Ftp_DataObjects_Ftp_xferlog extends DB_DataObject 
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'ftp_xferlog';         // table name
13     public $id;                              // int(11)  not_null primary_key auto_increment
14     public $username;                        // string(30)  not_null multiple_key
15     public $filename;                        // blob(65535)  blob
16     public $size;                            // int(20)  
17     public $host;                            // blob(255)  blob
18     public $ip;                              // blob(255)  blob
19     public $action;                          // blob(255)  blob
20     public $duration;                        // blob(255)  blob
21     public $localtime;                       // timestamp(19)  unsigned zerofill binary
22     public $success;                         // int(1)  not_null
23
24     
25     /* the code above is auto generated do not remove the tag below */
26     ###END_AUTOCODE
27 }