class Version20171121000000 extends AbstractMigration implements RepeatableMigrationInterface (View source)

Properties

protected $app from  AbstractMigration
protected $validAttributes from  AbstractMigration
Connection $connection from  AbstractMigration

Methods

__construct(Version $version)

No description

upgradeSchema(Schema $schema)

Override this method when the database structure is upgraded using ONLY the DBAL Schema object.

upgradeDatabase()

Override this method when database schema is not upgraded, or when it's upgraded without using a Schema.

downgradeSchema(Schema $schema)

Override this method when the database structure is downgraded using ONLY the DBAL Schema object.

downgradeDatabase()

Override this method when database schema is not downgraded, or when it's downgraded without using a Schema.

void
up(Schema $schema)

{@inheritdoc}

void
postUp(Schema $schema)

{@inheritdoc}

void
down(Schema $schema)

{@inheritdoc}

void
postDown(Schema $schema)

{@inheritdoc}

output($message)

No description

refreshEntities($entities = null)

No description

refreshDatabaseTables($tables)

No description

refreshBlockType($btHandle)

No description

nullifyInvalidForeignKey(string $table, string $field, string $linkedTable, string $linkedField)

Set to NULL the fields in a table that reference not existing values of another table.

deleteInvalidForeignKey(string $table, string $field, string $linkedTable, string $linkedField)

Delete the records in a table whose field references not existing values of another table.

isAttributeHandleValid($categoryClass, $handle)

No description

createSinglePage(string $path, string $name = '', array $attributes = [], $global = false)

Create a new SinglePage (if it does not exist).

Details

__construct(Version $version)

No description

Parameters

Version $version

upgradeSchema(Schema $schema)

Override this method when the database structure is upgraded using ONLY the DBAL Schema object.

Parameters

Schema $schema

See also

AbstractMigration::upgradeSchema

upgradeDatabase()

Override this method when database schema is not upgraded, or when it's upgraded without using a Schema.

downgradeSchema(Schema $schema)

Override this method when the database structure is downgraded using ONLY the DBAL Schema object.

Parameters

Schema $schema

downgradeDatabase()

Override this method when database schema is not downgraded, or when it's downgraded without using a Schema.

final void up(Schema $schema)

{@inheritdoc}

Parameters

Schema $schema

Return Value

void

See also

\Doctrine\Migrations\AbstractMigration::up()

final void postUp(Schema $schema)

{@inheritdoc}

Parameters

Schema $schema

Return Value

void

See also

\Doctrine\Migrations\AbstractMigration::postUp()

final void down(Schema $schema)

{@inheritdoc}

Parameters

Schema $schema

Return Value

void

See also

\Doctrine\Migrations\AbstractMigration::down()

final void postDown(Schema $schema)

{@inheritdoc}

Parameters

Schema $schema

Return Value

void

See also

\Doctrine\Migrations\AbstractMigration::postDown()

protected output($message)

No description

Parameters

$message

protected refreshEntities($entities = null)

No description

Parameters

$entities

protected refreshDatabaseTables($tables)

No description

Parameters

$tables

protected refreshBlockType($btHandle)

No description

Parameters

$btHandle

protected nullifyInvalidForeignKey(string $table, string $field, string $linkedTable, string $linkedField)

Set to NULL the fields in a table that reference not existing values of another table.

Parameters

string $table

The table containing the problematic field

string $field

The problematic field

string $linkedTable

The referenced table

string $linkedField

The referenced field

protected deleteInvalidForeignKey(string $table, string $field, string $linkedTable, string $linkedField)

Delete the records in a table whose field references not existing values of another table.

Parameters

string $table

The table containing the problematic field

string $field

The problematic field

string $linkedTable

The referenced table

string $linkedField

The referenced field

protected isAttributeHandleValid($categoryClass, $handle)

No description

Parameters

$categoryClass
$handle

protected Page createSinglePage(string $path, string $name = '', array $attributes = [], $global = false)

Create a new SinglePage (if it does not exist).

Parameters

string $path

the single page path

string $name

the single page name

array $attributes

the attribute values (keys are the attribute handles, values are the attribute values)

$global

Return Value

Page