Version20180126150719.php 440 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace Application\Migrations;
  3. use Doctrine\DBAL\Schema\Schema;
  4. use MigrationsBundle\Migrations\MigrationsBase;
  5. class Version20180126150719 extends MigrationsBase
  6. {
  7. /**
  8. * @param Schema $schema
  9. */
  10. public function up(Schema $schema)
  11. {
  12. $this->executeYaml(__DIR__, 'Version20180126150719.yml');
  13. }
  14. /**
  15. * @param Schema $schema
  16. */
  17. public function down(Schema $schema)
  18. {
  19. }
  20. }