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