| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 17 | 
| Code Lines | 12 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 2 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 13 | public function change()  | 
            ||
| 14 |     { | 
            ||
| 15 |         $table = $this->table('tickets'); | 
            ||
| 16 |         $table->addColumn('title', 'string', [ | 
            ||
| 17 | 'default' => null,  | 
            ||
| 18 | 'limit' => 255,  | 
            ||
| 19 | 'null' => false,  | 
            ||
| 20 | ]);  | 
            ||
| 21 |         $table->addColumn('created', 'datetime', [ | 
            ||
| 22 | 'default' => null,  | 
            ||
| 23 | 'null' => true,  | 
            ||
| 24 | ]);  | 
            ||
| 25 |         $table->addColumn('modified', 'datetime', [ | 
            ||
| 26 | 'default' => null,  | 
            ||
| 27 | 'null' => true,  | 
            ||
| 28 | ]);  | 
            ||
| 29 | $table->create();  | 
            ||
| 30 | }  | 
            ||
| 32 |