Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
31 | 52 | public function acceptSchema(Schema $schema) |
|
32 | { |
||
33 | 52 | $table = $schema->createTable($this->generatorTableName); |
|
34 | 52 | $table->addColumn('sequence_name', 'string'); |
|
35 | 52 | $table->addColumn('sequence_value', 'integer', ['default' => 1]); |
|
36 | 52 | $table->addColumn('sequence_increment_by', 'integer', ['default' => 1]); |
|
37 | 52 | } |
|
74 |