| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1.0046 |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | 52 | public function acceptSchema(Schema $schema) : void |
|
| 26 | { |
||
| 27 | 52 | $table = $schema->createTable($this->generatorTableName); |
|
| 28 | |||
| 29 | 52 | $table->addColumn('sequence_name', 'string', ['length' => 255]); |
|
| 30 | 52 | $table->addColumn('sequence_value', 'integer', ['default' => 1]); |
|
| 31 | 52 | $table->addColumn('sequence_increment_by', 'integer', ['default' => 1]); |
|
| 32 | 52 | } |
|
| 54 |