MigrationRepositoryInterface
interface MigrationRepositoryInterface (View source)
Methods
Get the completed migrations.
Get list of migrations.
Get the last migration batch.
Get the completed migrations with their batch numbers.
Log that a migration was run.
Remove a migration from the log.
Get the next migration batch number.
Create the migration repository data store.
Determine if the migration repository exists.
Set the information source to gather data.
Details
        
                            array
    getRan()
        
    
    Get the completed migrations.
        
                            array
    getMigrations(int $steps)
        
    
    Get list of migrations.
        
                            array
    getLast()
        
    
    Get the last migration batch.
        
                            array
    getMigrationBatches()
        
    
    Get the completed migrations with their batch numbers.
        
                            void
    log(string $file, int $batch)
        
    
    Log that a migration was run.
        
                            void
    delete(object $migration)
        
    
    Remove a migration from the log.
        
                            int
    getNextBatchNumber()
        
    
    Get the next migration batch number.
        
                            void
    createRepository()
        
    
    Create the migration repository data store.
        
                            bool
    repositoryExists()
        
    
    Determine if the migration repository exists.
        
                            void
    setSource(string $name)
        
    
    Set the information source to gather data.