\Omega\Database\Command MigrateCommand

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.

Summary

Methods
Properties
Constants
__construct
No public properties found
No public constants found
configure
execute
defaultName
No protected constants found
runAllMigrations
runNewMigrations
runMigration
createMigrationsTable
No private properties found
No private constants found

Properties

$defaultName

$defaultName : string

Default command name.

Type

string — Holds the default command name.

Methods

__construct()

__construct() : void

Command constructor.

Returns

void —

configure()

configure() : void

Configures the current command.

This method configures the command description, options, and help information.

Returns

void —

execute()

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.

Parameters

\Symfony\Component\Console\Input\InputInterface $input

Holds an instance of InputInterface.

\Symfony\Component\Console\Output\OutputInterface $output

Holds an instance of OutputInterface.

Throws

\RuntimeException

if database connection is invalid.

Returns

int —

Return 0 if everything went fine, or an exit code.

runAllMigrations()

runAllMigrations(array  $paths, \Omega\Database\Adapter\AbstractDatabaseAdapter  $connection, \Symfony\Component\Console\Output\OutputInterface  $output) : void

Runs all the migrations in the given paths.

Parameters

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.

Returns

void —

runNewMigrations()

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.

Parameters

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.

Returns

void —

runMigration()

runMigration(string  $path, \Omega\Database\Adapter\AbstractDatabaseAdapter  $connection, \Symfony\Component\Console\Output\OutputInterface  $output) : void

Runs a single migration file.

Parameters

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.

Returns

void —

createMigrationsTable()

createMigrationsTable(\Omega\Database\Adapter\AbstractDatabaseAdapter  $connection) : void

Create migration table.

Parameters

\Omega\Database\Adapter\AbstractDatabaseAdapter $connection

Holds an instance of AbstractDatabaseAdapter.

Returns

void —