class DatabaseMigrationRepository implements MigrationRepositoryInterface

Properties

protected ConnectionInterface $connection <p>The name of the database connection to use.</p>
protected string $table <p>The name of the migration table.</p>

Methods

__construct(ConnectionInterface $connection, string $table)

<p>Create a new database migration repository instance.</p>

array
getRan(string $extension = null)

<p>Get the ran migrations.</p>

void
log(string $file, string $extension = null)

<p>Log that a migration was run.</p>

void
delete(string $file, string $extension = null)

<p>Remove a migration from the log.</p>

bool
repositoryExists()

<p>Determine if the migration repository exists.</p>

Builder
table()

<p>Get a query builder for the migration table.</p>

Details

__construct(ConnectionInterface $connection, string $table)

<p>Create a new database migration repository instance.</p>

Parameters

ConnectionInterface $connection
string $table

array getRan(string $extension = null)

<p>Get the ran migrations.</p>

Parameters

string $extension

Return Value

array

void log(string $file, string $extension = null)

<p>Log that a migration was run.</p>

Parameters

string $file
string $extension

Return Value

void

void delete(string $file, string $extension = null)

<p>Remove a migration from the log.</p>

Parameters

string $file
string $extension

Return Value

void

bool repositoryExists()

<p>Determine if the migration repository exists.</p>

Return Value

bool

protected Builder table()

<p>Get a query builder for the migration table.</p>

Return Value

Builder