| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | public function testDefaultValueComparison() |
||
| 29 | { |
||
| 30 | $table = new Table('default_value'); |
||
| 31 | $table->addColumn('id', 'integer', ['default' => 1]); |
||
| 32 | |||
| 33 | $this->schemaManager->createTable($table); |
||
| 34 | |||
| 35 | $onlineTable = $this->schemaManager->listTableDetails('default_value'); |
||
| 36 | |||
| 37 | self::assertFalse($this->comparator->diffTable($table, $onlineTable)); |
||
| 38 | } |
||
| 40 |