| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 7 | 
| Code Lines | 6 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Tests | 0 | 
| CRAP Score | 2 | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 24 |     public function down(Schema $schema) { | 
            ||
| 25 | $prefix = $this->connection->getPrefix();  | 
            ||
| 26 | 		$table = $schema->getTable("{$prefix}activity"); | 
            ||
| 27 | 		$table->changeColumn('app', ['length' => 255]); | 
            ||
| 28 | 		$table->changeColumn('subjectparams', ['type' => Type::getType('string'), 'length' => '4000']); | 
            ||
| 29 | 		$table->changeColumn('messageparams', ['type' => Type::getType('string'), 'length' => '4000']); | 
            ||
| 30 | }  | 
            ||
| 31 | }  | 
            ||
| 32 |