Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
31 | public function changeSchema(IOutput $output, Closure $schemaClosure, array $options) { |
||
32 | /** @var ISchemaWrapper $schema */ |
||
33 | $schema = $schemaClosure(); |
||
34 | |||
35 | $personsTable = $schema->getTable('facerecog_persons'); |
||
36 | $personsTable->changeColumn('name', [ |
||
37 | 'notnull' => false, |
||
38 | 'default' => null, |
||
39 | ]); |
||
40 | |||
41 | return $schema; |
||
42 | } |
||
58 |