123456789101112131415161718192021222324 |
- <?php
- namespace Application\Migrations;
- use Doctrine\DBAL\Schema\Schema;
- use MigrationsBundle\Migrations\MigrationsBase;
- class Version20180126150719 extends MigrationsBase
- {
- /**
- * @param Schema $schema
- */
- public function up(Schema $schema)
- {
- $this->executeYaml(__DIR__, 'Version20180126150719.yml');
- }
- /**
- * @param Schema $schema
- */
- public function down(Schema $schema)
- {
- }
- }
|