Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
42 | public function changeSchema(IOutput $output, Closure $schemaClosure, array $options) |
||
43 | { |
||
44 | /** @var ISchemaWrapper $schema */ |
||
45 | $schema = $schemaClosure(); |
||
46 | |||
47 | $table = $schema->getTable('analytics_dataset'); |
||
48 | |||
49 | $table->addColumn('dataoptions', 'string', [ |
||
50 | 'notnull' => false, |
||
51 | 'length' => 1000, |
||
52 | ]); |
||
53 | |||
54 | return $schema; |
||
55 | } |
||
66 |