| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | public function up(Schema $schema) |
||
| 19 | { |
||
| 20 | $this->abortIf( |
||
| 21 | $this->connection->getDatabasePlatform()->getName() != 'mysql', |
||
| 22 | 'Migration can only be executed safely on \'mysql\'.' |
||
| 23 | ); |
||
| 24 | |||
| 25 | $this->addSql(" |
||
| 26 | INSERT INTO page (slug, meta_keywords, meta_description, meta_social, updated_at, active) |
||
| 27 | VALUE ('impressum','','','', NOW(),1); |
||
| 28 | |||
| 29 | INSERT INTO page (slug, meta_keywords, meta_description, meta_social, updated_at, active) |
||
| 30 | VALUE ('tos','','','',NOW(),1); |
||
| 31 | "); |
||
| 32 | } |
||
| 33 | |||
| 45 |