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.
		
		
		
		
		
			
		
			
				
					
					
						
							23 lines
						
					
					
						
							854 B
						
					
					
				
			
		
		
	
	
							23 lines
						
					
					
						
							854 B
						
					
					
				doctrine_migrations:
 | 
						|
    # Sync this changes with the public/main/install/migrations.php file
 | 
						|
    migrations_paths:
 | 
						|
        'Chamilo\CoreBundle\Migrations\Schema\V200': '%kernel.project_dir%/src/CoreBundle/Migrations/Schema/V200'
 | 
						|
 | 
						|
    services:
 | 
						|
        'Doctrine\Migrations\Version\MigrationFactory': 'Chamilo\CoreBundle\Migrations\MigrationFactory'
 | 
						|
 | 
						|
    connection: default
 | 
						|
 | 
						|
    # Run all migrations in a transaction.
 | 
						|
    all_or_nothing: false
 | 
						|
 | 
						|
    # Adds an extra check in the generated migrations to ensure that is executed on the same database type.
 | 
						|
    check_database_platform: true
 | 
						|
 | 
						|
    storage:
 | 
						|
        # Default (SQL table) metadata storage configuration
 | 
						|
        table_storage:
 | 
						|
            table_name: 'version'
 | 
						|
            version_column_name: 'version'
 | 
						|
            version_column_length: 1024
 | 
						|
            executed_at_column_name: 'executed_at'
 | 
						|
 |