Manual:$wgActorTableSchemaMigrationStage

Miscellaneous settings: $wgActorTableSchemaMigrationStage
actor table schema migration stage.
Introduced in version:1.37.0 (Gerrit change 684142; git #d3d8dc99)
Removed in version:1.39.0 (Gerrit change 793845; git #24115a8f)
Allowed values:(See below)
Default value:SCHEMA_COMPAT_TEMP (0x30) (1.37-1.38)
SCHEMA_COMPAT_NEW (0x30) (1.33-1.34)
SCHEMA_COMPAT_OLD (1.32)
MIGRATION_OLD (1.31)
MediaWiki settings: $wgActorTableSchemaMigrationStage
Please edit this page to enter a summary.
Introduced in version:1.31.0 (Gerrit change 380669; git #27c61fb1)
Removed in version:1.34.0 (Gerrit change 525605; git #c29909e5)
Allowed values:Unspecified
Default value:Unspecified

$wgActorTableSchemaMigrationStage indicates the Actor migration stage. Most wikis can set this to SCHEMA_COMPAT_NEW and run maintenance/migrateActors.php as soon as any necessary extensions are updated.

Note that reading the old and new schema at the same time is not supported in 1.32, but was (with significant query performance issues) in 1.31.

Details edit

MediaWiki 1.37-1.38 edit

MediaWiki versions:
1.37 – 1.38

The recommended values are:

  • SCHEMA_COMPAT_TEMP (0x30)
  • SCHEMA_COMPAT_WRITE_TEMP_AND_NEW | SCHEMA_COMPAT_READ_TEMP (0x130)
  • SCHEMA_COMPAT_WRITE_TEMP_AND_NEW | SCHEMA_COMPAT_READ_NEW (0x310)
  • SCHEMA_COMPAT_NEW (0x300)

MediaWiki 1.32-1.34 edit

MediaWiki versions:
1.32 – 1.34

$wgActorTableSchemaMigrationStage can be set to one combination of the Schema change migration flags.

The allowed values for the configuration are one of the SCHEMA_COMPAT_* constants. The recommended values are:

  • SCHEMA_COMPAT_OLD (0x03, default value) - Only read and write the old schema. The new schema need not even exist. This is used from when the patch is merged until the schema change is actually applied to the database.
  • SCHEMA_COMPAT_WRITE_BOTH | SCHEMA_COMPAT_READ_OLD (0x13) - Write both the old and new schema. Read the old schema. This is used while the change is being tested, allowing easy roll-back to the old schema.
  • SCHEMA_COMPAT_WRITE_BOTH | SCHEMA_COMPAT_READ_NEW (0x31) - Write both the old and new schema. Read the new schema. This is used while the change is being tested, after running migrateActors.php, allowing easy roll-back to the old schema.
  • SCHEMA_COMPAT_NEW (0x30) - Only read and write the new schema. The old schema (and the feature flag) may now be removed.

MediaWiki 1.31 edit

MediaWiki version:
1.31

$wgActorTableSchemaMigrationStage can be set to one of the Schema change migration flags. The allowed value range for the configuration is one of the MIGRATION_* constants. The available constants and their planned use cases on Wikimedia Foundation wikis are as follows:

  • MIGRATION_OLD (0, default value) - Only read and write the old schema. The new schema need not even exist. This is used from when the patch is merged until the schema change is actually applied to the database.
  • MIGRATION_WRITE_BOTH (1) - Write both the old and new schema. Read the new schema preferentially, falling back to the old. This is used while the change is being tested, allowing easy roll-back to the old schema.
  • MIGRATION_WRITE_NEW (2) - Write only the new schema. Read the new schema preferentially, falling back to the old. This is used while running the maintenance script to migrate existing entries in the old schema to the new schema.
  • MIGRATION_NEW (3) - Only read and write the new schema. The old schema (and the feature flag) may now be removed.