Skip to content

Commit 85825c8

Browse files
committed
Introduce migrations.php file
1 parent 3aec1df commit 85825c8

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

migrations.php

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
return [
6+
'table_storage' => [
7+
'table_name' => 'doctrine_migration_versions',
8+
'version_column_name' => 'version',
9+
'version_column_length' => 191,
10+
'executed_at_column_name' => 'executed_at',
11+
'execution_time_column_name' => 'execution_time',
12+
],
13+
'migrations_paths' => [
14+
'MyProject\Migrations' => __DIR__ . '/migrations',
15+
],
16+
'all_or_nothing' => true,
17+
'transactional' => true,
18+
'check_database_platform' => true,
19+
'organize_migrations' => 'none',
20+
'connection' => null,
21+
'em' => null,
22+
];

0 commit comments

Comments
 (0)