initial commit
This commit is contained in:
22
migrations.php
Normal file
22
migrations.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'table_storage' => [
|
||||
'table_name' => 'doctrine_migration_versions',
|
||||
'version_column_name' => 'version',
|
||||
'version_column_length' => 191,
|
||||
'executed_at_column_name' => 'executed_at',
|
||||
'execution_time_column_name' => 'execution_time',
|
||||
],
|
||||
|
||||
'migrations_paths' => [
|
||||
'Migrations' => __DIR__ . '/migrations',
|
||||
],
|
||||
|
||||
'all_or_nothing' => true,
|
||||
'transactional' => true,
|
||||
'check_database_platform' => true,
|
||||
'organize_migrations' => 'none',
|
||||
'connection' => null,
|
||||
'em' => null,
|
||||
];
|
||||
Reference in New Issue
Block a user