Skip to content
This repository was archived by the owner on May 1, 2019. It is now read-only.

Commit 78bec40

Browse files
committed
Fix: Move migrations into Application namespace
1 parent 4af812d commit 78bec40

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

config/autoload/global.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
],
2929
'migrations_configuration' => [
3030
'orm_default' => [
31-
'directory' => 'data/migrations',
31+
'directory' => 'module/Application/src/Application/Doctrine/DBAL/Migration',
3232
'name' => 'ZFModules DBAL Migrations',
33-
'namespace' => 'ZfModulesMigrations',
33+
'namespace' => 'Application\Doctrine\DBAL\Migration',
3434
'table' => 'doctrine_migration_versions',
3535
],
3636
],

data/migrations/Version20150926125836.php renamed to module/Application/src/Application/Doctrine/DBAL/Migration/Version20150926125836.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace ZfModulesMigrations;
3+
namespace Application\Doctrine\DBAL\Migration;
44

55
use Doctrine\DBAL\Migrations\AbstractMigration;
66
use Doctrine\DBAL\Schema\Schema;

0 commit comments

Comments
 (0)