We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aec1df commit 85825c8Copy full SHA for 85825c8
migrations.php
@@ -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