Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | class M190420000000ExecResult extends Migration |
||
18 | { |
||
19 | /** |
||
20 | * @inheritdoc |
||
21 | */ |
||
22 | public function safeUp() |
||
23 | { |
||
24 | $this->addColumn($this->env->execTableName, 'result_data', $this->binary()->after('error')); |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @inheritdoc |
||
29 | */ |
||
30 | public function safeDown() |
||
33 | } |
||
34 | } |
||
35 |