Conditions | 1 |
Paths | 1 |
Total Lines | 21 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
15 | public function up(Pdo $connection) |
||
16 | { |
||
17 | $connection->createTable( |
||
18 | 'migrations', |
||
19 | null, |
||
20 | [ |
||
21 | 'columns' => [ |
||
22 | new Column('migration', [ |
||
23 | 'type' => Column::TYPE_VARCHAR, |
||
24 | 'size' => 250, |
||
25 | 'notNull' => true, |
||
26 | ]), |
||
27 | new Column('batch', [ |
||
28 | 'type' => Column::TYPE_INTEGER, |
||
29 | 'size' => 10, |
||
30 | 'notNull' => true, |
||
31 | ]), |
||
32 | ], |
||
33 | ] |
||
34 | ); |
||
35 | } |
||
36 | |||
47 |