keystone.common.sql.upgrades module

class keystone.common.sql.upgrades.Repository(engine, repo_name)[source]

Bases: object

upgrade(version=None, current_schema=None)[source]
property version
keystone.common.sql.upgrades.add_constraints(constraints)[source]
keystone.common.sql.upgrades.contract_schema()[source]

Contract the database.

This is run manually by the keystone-manage command once the keystone nodes have been upgraded to the latest release and will remove any old tables/columns that are no longer required.

keystone.common.sql.upgrades.expand_schema()[source]

Expand the database schema ahead of data migration.

This is run manually by the keystone-manage command before the first keystone node is migrated to the latest release.

keystone.common.sql.upgrades.find_repo(repo_name)[source]

Return the absolute path to the named repository.

keystone.common.sql.upgrades.get_constraints_names(table, column_name)[source]
keystone.common.sql.upgrades.get_db_version(repo='migrate_repo')[source]
keystone.common.sql.upgrades.get_init_version(abs_path=None)[source]

Get the initial version of a migrate repository.

Parameters

abs_path – Absolute path to migrate repository.

Returns

initial version number or None, if DB is empty.

keystone.common.sql.upgrades.migrate_data()[source]

Migrate data to match the new schema.

This is run manually by the keystone-manage command once the keystone schema has been expanded for the new release.

keystone.common.sql.upgrades.offline_sync_database_to_version(version=None)[source]

Perform and off-line sync of the database.

Migrate the database up to the latest version, doing the equivalent of the cycle of –expand, –migrate and –contract, for when an offline upgrade is being performed.

If a version is specified then only migrate the database up to that version. Downgrading is not supported. If version is specified, then only the main database migration is carried out - and the expand, migration and contract phases will NOT be run.

keystone.common.sql.upgrades.remove_constraints(constraints)[source]
keystone.common.sql.upgrades.validate_upgrade_order(repo_name, target_repo_version=None)[source]

Validate the state of the migration repositories.

This is run before allowing the db_sync command to execute. Ensure the upgrade step and version specified by the operator remains consistent with the upgrade process. I.e. expand’s version is greater or equal to migrate’s, migrate’s version is greater or equal to contract’s.

Parameters
  • repo_name – The name of the repository that the user is trying to upgrade.

  • target_repo_version – The version to upgrade the repo. Otherwise, the version will be upgraded to the latest version available.