Migration
abstract class Migration
Base migration.
Traits
                    Container aware trait.
                
            Properties
Methods
                    mixed
                
                
                    __get(string $key)
        
                                            
                Resolves item from the container using overloading.
from ContainerAwareTrait
            
                    string|null
                
                
                    getConnectionName()
        
                                            
                
            Returns the connection name.
                    getConnection()
        
                                            
                
            Returns the chosen connection.
                    bool
                
                
                    useTransaction()
        
                                            
                
            Should we execute this migration in a transaction?
                    string
                
                
                    getDescription()
        
                                            
                
            Returns the migration description.
                    up()
        
                                            
                
            Makes changes to the database structure.
                    down()
        
                                            
                
            Reverts the database changes.
Details
        in ContainerAwareTrait at         line 68
                            
    setContainer(Container $container)
        
    
    Sets the container instance.
        in ContainerAwareTrait at         line 79
                            mixed
    __get(string $key)
        
    
    Resolves item from the container using overloading.
        at         line 56
                            
    __construct(ConnectionManager $connectionManager)
        
    
    Constructor.
        at         line 66
                            string|null
    getConnectionName()
        
    
    Returns the connection name.
        at         line 76
                            Connection
    getConnection()
        
    
    Returns the chosen connection.
        at         line 86
                            bool
    useTransaction()
        
    
    Should we execute this migration in a transaction?
        at         line 101
                            string
    getDescription()
        
    
    Returns the migration description.
        at         line 109
            abstract                
    up()
        
    
    Makes changes to the database structure.
        at         line 114
            abstract                
    down()
        
    
    Reverts the database changes.