@@ -8,25 +8,26 @@ public function before($event = array()) {
88 public function after ($ event = array ()) {
99 }
1010
11- public $ support__reply_tickets = array (
11+ public $ support__reply_tickets = array (
1212 'id ' => array ('type ' => 'integer ' , 'null ' => false , 'default ' => null , 'length ' => 20 , 'unsigned ' => false , 'key ' => 'primary ' ),
1313 'ticket_id ' => array ('type ' => 'integer ' , 'null ' => false , 'default ' => null , 'length ' => 20 , 'unsigned ' => false ),
1414 'reply ' => array ('type ' => 'text ' , 'null ' => false , 'default ' => null , 'collate ' => 'latin1_swedish_ci ' , 'charset ' => 'latin1 ' ),
15- 'author ' => array ('type ' => 'string ' , 'null ' => false , 'default ' => null , 'length ' => 50 , 'collate ' => 'latin1_swedish_ci ' , 'charset ' => 'latin1 ' ),
16- 'created ' => array ('type ' => 'datetime ' , 'null ' => false , 'default ' => null ),
15+ 'author ' => array ('type ' => 'integer ' , 'null ' => false , 'default ' => null , 'length ' => 20 , 'unsigned ' => false ,),
16+ 'created ' => array ('type ' => 'string ' , 'length ' => 50 , 'null ' => false , 'default ' => null ),
17+ 'type ' => array ('type ' => 'integer ' , 'null ' => false , 'default ' => '0 ' , 'length ' => 11 , 'unsigned ' => false ),
1718 'indexes ' => array (
1819 'PRIMARY ' => array ('column ' => 'id ' , 'unique ' => 1 )
1920 ),
2021 'tableParameters ' => array ('charset ' => 'latin1 ' , 'collate ' => 'latin1_swedish_ci ' , 'engine ' => 'InnoDB ' )
2122 );
22- public $ support__tickets = array (
23+
24+ public $ support__tickets = array (
2325 'id ' => array ('type ' => 'integer ' , 'null ' => false , 'default ' => null , 'length ' => 20 , 'unsigned ' => false , 'key ' => 'primary ' ),
24- 'title ' => array ('type ' => 'string ' , 'null ' => false , 'default ' => null , 'length ' => 50 , 'collate ' => 'latin1_swedish_ci ' , 'charset ' => 'latin1 ' ),
25- 'content ' => array ('type ' => 'text ' , 'null ' => false , 'default ' => null , 'collate ' => 'latin1_swedish_ci ' , 'charset ' => 'latin1 ' ),
26- 'author ' => array ('type ' => 'string ' , 'null ' => false , 'default ' => null , 'length ' => 50 , 'collate ' => 'latin1_swedish_ci ' , 'charset ' => 'latin1 ' ),
27- 'private ' => array ('type ' => 'integer ' , 'null ' => false , 'default ' => '0 ' , 'length ' => 1 , 'unsigned ' => false ),
26+ 'subject ' => array ('type ' => 'string ' , 'null ' => false , 'default ' => null , 'length ' => 50 , 'collate ' => 'latin1_swedish_ci ' , 'charset ' => 'latin1 ' ),
27+ 'author ' => array ('type ' => 'integer ' , 'null ' => false , 'default ' => null , 'length ' => 20 , 'unsigned ' => false ,),
2828 'state ' => array ('type ' => 'integer ' , 'null ' => false , 'default ' => '0 ' , 'length ' => 1 , 'unsigned ' => false ),
29- 'created ' => array ('type ' => 'datetime ' , 'null ' => false , 'default ' => null ),
29+ 'created ' => array ('type ' => 'string ' , 'length ' => 50 , 'null ' => false , 'default ' => null ),
30+ 'reponse_text ' => array ('type ' => 'text ' , 'null ' => false , 'default ' => null , 'collate ' => 'latin1_swedish_ci ' , 'charset ' => 'latin1 ' ),
3031 'indexes ' => array (
3132 'PRIMARY ' => array ('column ' => 'id ' , 'unique ' => 1 )
3233 ),
0 commit comments