| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | public function up(Schema $schema) |
||
| 17 | { |
||
| 18 | $this->getEntityManager(); |
||
| 19 | |||
| 20 | $this->addSql('ALTER TABLE extra_field ADD helper_text text DEFAULT NULL AFTER display_text'); |
||
| 21 | $tableObj = $schema->getTable('personal_agenda'); |
||
| 22 | if ($tableObj->hasColumn('course')) { |
||
| 23 | $this->addSql("ALTER TABLE personal_agenda DROP course"); |
||
| 24 | } |
||
| 31 |