trait LazilyRefreshDatabase (View source)

Traits

Methods

array
migrateFreshUsing()

The parameters that should be used when running "migrate:fresh".

bool
shouldDropViews()

Determine if views should be dropped when refreshing the database.

bool
shouldDropTypes()

Determine if types should be dropped when refreshing the database.

bool
shouldSeed()

Determine if the seed task should be run when refreshing the database.

mixed
seeder()

Determine the specific seeder class that should be used when refreshing the database.

void
refreshDatabase()

Define hooks to migrate the database before and after each test.

bool
usingInMemoryDatabase()

Determine if an in-memory database is being used.

void
refreshInMemoryDatabase()

Refresh the in-memory database.

array
migrateUsing()

The parameters that should be used when running "migrate".

void
refreshTestDatabase()

Refresh a conventional test database.

void
beginDatabaseTransaction()

Begin a database transaction on the testing database.

array
connectionsToTransact()

The database connections that should have transactions.

void
beforeRefreshingDatabase()

Perform any work that should take place before the database has started refreshing.

void
afterRefreshingDatabase()

Perform any work that should take place once the database has finished refreshing.

Details

protected array migrateFreshUsing()

The parameters that should be used when running "migrate:fresh".

Return Value

array

protected bool shouldDropViews()

Determine if views should be dropped when refreshing the database.

Return Value

bool

protected bool shouldDropTypes()

Determine if types should be dropped when refreshing the database.

Return Value

bool

protected bool shouldSeed()

Determine if the seed task should be run when refreshing the database.

Return Value

bool

protected mixed seeder()

Determine the specific seeder class that should be used when refreshing the database.

Return Value

mixed

void refreshDatabase()

Define hooks to migrate the database before and after each test.

Return Value

void

protected bool usingInMemoryDatabase()

Determine if an in-memory database is being used.

Return Value

bool

protected void refreshInMemoryDatabase()

Refresh the in-memory database.

Return Value

void

protected array migrateUsing()

The parameters that should be used when running "migrate".

Return Value

array

protected void refreshTestDatabase()

Refresh a conventional test database.

Return Value

void

void beginDatabaseTransaction()

Begin a database transaction on the testing database.

Return Value

void

protected array connectionsToTransact()

The database connections that should have transactions.

Return Value

array

protected void beforeRefreshingDatabase()

Perform any work that should take place before the database has started refreshing.

Return Value

void

protected void afterRefreshingDatabase()

Perform any work that should take place once the database has finished refreshing.

Return Value

void