$defaultName
$defaultName : string
Default command name.
Migrate command class.
The MigrateCommand
is used to run database migrations. It looks for migration
files in the specified directory and executes them. You can also use the --fresh
option to delete all database tables before running migrations.
execute(\Symfony\Component\Console\Input\InputInterface $input, \Symfony\Component\Console\Output\OutputInterface $output) : int
Executes the current command.
This method runs database migrations by looking for migration files and executing them in order. It also provides an option to delete all database tables before running migrations.
\Symfony\Component\Console\Input\InputInterface | $input | Holds an instance of InputInterface. |
\Symfony\Component\Console\Output\OutputInterface | $output | Holds an instance of OutputInterface. |
if database connection is invalid.
Return 0 if everything went fine, or an exit code.
runAllMigrations(array $paths, \Omega\Database\Adapter\AbstractDatabaseAdapter $connection, \Symfony\Component\Console\Output\OutputInterface $output) : void
Runs all the migrations in the given paths.
array | $paths | Holds the migration files paths. |
\Omega\Database\Adapter\AbstractDatabaseAdapter | $connection | Holds the database connection. |
\Symfony\Component\Console\Output\OutputInterface | $output | Holds the command output interface. |
runNewMigrations(array $paths, \Omega\Database\Adapter\AbstractDatabaseAdapter $connection, \Symfony\Component\Console\Output\OutputInterface $output) : void
Runs only new migrations that are not in the migrations table.
array | $paths | Holds the migration files paths. |
\Omega\Database\Adapter\AbstractDatabaseAdapter | $connection | Holds the database connection. |
\Symfony\Component\Console\Output\OutputInterface | $output | Holds the command output interface. |
runMigration(string $path, \Omega\Database\Adapter\AbstractDatabaseAdapter $connection, \Symfony\Component\Console\Output\OutputInterface $output) : void
Runs a single migration file.
string | $path | Holds the migration file path. |
\Omega\Database\Adapter\AbstractDatabaseAdapter | $connection | Holds the database connection. |
\Symfony\Component\Console\Output\OutputInterface | $output | Holds the command output interface. |