You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
568 B
18 lines
568 B
<?php
|
|
|
|
// Sync this changes with the config/packages/doctrine_migrations.yaml file
|
|
|
|
return [
|
|
'table_storage' => [
|
|
'table_name' => 'version',
|
|
'version_column_name' => 'version',
|
|
'version_column_length' => 1024,
|
|
'executed_at_column_name' => 'executed_at',
|
|
'execution_time_column_name' => 'execution_time',
|
|
],
|
|
'migrations_paths' => [
|
|
'Chamilo\CoreBundle\Migrations\Schema\V200' => '../../../src/CoreBundle/Migrations/Schema/V200',
|
|
],
|
|
'all_or_nothing' => false,
|
|
'check_database_platform' => true,
|
|
];
|
|
|