Module migrate.changeset – Schema changes

Module migrate.changeset – Schema migration API

This module extends SQLAlchemy and provides additional DDL [1] support.

[1]SQL Data Definition Language

Module ansisql – Standard SQL implementation

Extensions to SQLAlchemy for altering existing tables.

At the moment, this isn’t so much based off of ANSI as much as things that just happen to work with multiple databases.

class migrate.changeset.ansisql.ANSIColumnDropper(dialect, connection, **kw)

Extends ANSI SQL dropper for column dropping (ALTER TABLE DROP COLUMN).

visit_column(column)

Drop a column from its table.

Parameters:column (sqlalchemy.Column) – the column object
class migrate.changeset.ansisql.ANSIColumnGenerator(dialect, connection, **kw)

Extends ansisql generator for column creation (alter table add col)

visit_column(column)

Create a column (table already exists).

Parameters:column (sqlalchemy.Column instance) – column object
class migrate.changeset.ansisql.ANSIConstraintCommon(dialect, connection, **kw)

Migrate’s constraints require a separate creation function from SA’s: Migrate’s constraints are created independently of a table; SA’s are created at the same time as the table.

get_constraint_name(cons)

Gets a name for the given constraint.

If the name is already set it will be used otherwise the constraint’s autoname method is used.

Parameters:cons – constraint object
class migrate.changeset.ansisql.ANSISchemaChanger(dialect, connection, **kw)

Manages changes to existing schema elements.

Note that columns are schema elements; ALTER TABLE ADD COLUMN is in SchemaGenerator.

All items may be renamed. Columns can also have many of their properties - type, for example - changed.

Each function is passed a tuple, containing (object, name); where object is a type of object you’d expect for that function (ie. table for visit_table) and name is the object’s new name. NONE means the name is unchanged.

start_alter_column(table, col_name)

Starts ALTER COLUMN

visit_column(delta)

Rename/change a column.

visit_index(index)

Rename an index

visit_table(table)

Rename a table. Other ops aren’t supported.

class migrate.changeset.ansisql.AlterTableVisitor(dialect, connection, **kw)

Common operations for ALTER TABLE statements.

append(s)

Append content to the SchemaIterator’s query buffer.

execute()

Execute the contents of the SchemaIterator’s buffer.

start_alter_table(param)

Returns the start of an ALTER TABLE SQL-Statement.

Use the param object to determine the table name and use it for building the SQL statement.

Parameters:param (sqlalchemy.Column, sqlalchemy.Index, sqlalchemy.schema.Constraint, sqlalchemy.Table, or string (table name)) – object to determine the table from

Module constraint – Constraint schema migration API

This module defines standalone schema constraint classes.

class migrate.changeset.constraint.CheckConstraint(sqltext, *args, **kwargs)

Bases: migrate.changeset.constraint.ConstraintChangeset, sqlalchemy.schema.CheckConstraint

Construct CheckConstraint

Migrate’s additional parameters:

Parameters:
  • sqltext (string) – Plain SQL text to check condition
  • columns (list of Columns instances) – If not name is applied, you must supply this kw to autoname constraint
  • table (Table instance) – If columns are passed as strings, this kw is required
create(*a, **kw)

Create the constraint in the database.

Parameters:
drop(*a, **kw)

Drop the constraint from the database.

Parameters:
Returns:

Instance with cleared columns

get_children(**kwargs)

used to allow SchemaVisitor access

class migrate.changeset.constraint.ConstraintChangeset

Bases: object

Base class for Constraint classes.

create(*a, **kw)

Create the constraint in the database.

Parameters:
drop(*a, **kw)

Drop the constraint from the database.

Parameters:
Returns:

Instance with cleared columns

class migrate.changeset.constraint.ForeignKeyConstraint(columns, refcolumns, *args, **kwargs)

Bases: migrate.changeset.constraint.ConstraintChangeset, sqlalchemy.schema.ForeignKeyConstraint

Construct ForeignKeyConstraint

Migrate’s additional parameters:

Parameters:
  • columns (list of strings or Column instances) – Columns in constraint
  • refcolumns (list of strings or Column instances) – Columns that this FK reffers to in another table.
  • table (Table instance) – If columns are passed as strings, this kw is required
autoname()

Mimic the database’s automatic constraint names

create(*a, **kw)

Create the constraint in the database.

Parameters:
drop(*a, **kw)

Drop the constraint from the database.

Parameters:
Returns:

Instance with cleared columns

get_children(**kwargs)

used to allow SchemaVisitor access

class migrate.changeset.constraint.PrimaryKeyConstraint(*cols, **kwargs)

Bases: migrate.changeset.constraint.ConstraintChangeset, sqlalchemy.schema.PrimaryKeyConstraint

Construct PrimaryKeyConstraint

Migrate’s additional parameters:

Parameters:
  • cols (strings or Column instances) – Columns in constraint.
  • table (Table instance) – If columns are passed as strings, this kw is required
autoname()

Mimic the database’s automatic constraint names

create(*a, **kw)

Create the constraint in the database.

Parameters:
drop(*a, **kw)

Drop the constraint from the database.

Parameters:
Returns:

Instance with cleared columns

get_children(**kwargs)

used to allow SchemaVisitor access

class migrate.changeset.constraint.UniqueConstraint(*cols, **kwargs)

Bases: migrate.changeset.constraint.ConstraintChangeset, sqlalchemy.schema.UniqueConstraint

Construct UniqueConstraint

Migrate’s additional parameters:

Parameters:
  • cols (strings or Column instances) – Columns in constraint.
  • table (Table instance) – If columns are passed as strings, this kw is required

New in version 0.6.0.

autoname()

Mimic the database’s automatic constraint names

create(*a, **kw)

Create the constraint in the database.

Parameters:
drop(*a, **kw)

Drop the constraint from the database.

Parameters:
Returns:

Instance with cleared columns

get_children(**kwargs)

used to allow SchemaVisitor access

Module databases – Database specific schema migration

This module contains database dialect specific changeset implementations.

Module mysql

MySQL database specific implementations of changeset classes.

Module firebird

Firebird database specific implementations of changeset classes.

class migrate.changeset.databases.firebird.FBColumnDropper(dialect, connection, **kw)

Firebird column dropper implementation.

visit_column(column)

Firebird supports ‘DROP col’ instead of ‘DROP COLUMN col’ syntax

Drop primary key and unique constraints if dropped column is referencing it.

class migrate.changeset.databases.firebird.FBColumnGenerator(dialect, connection, **kw)

Firebird column generator implementation.

class migrate.changeset.databases.firebird.FBConstraintDropper(dialect, connection, **kw)

Firebird constaint dropper implementation.

cascade_constraint(constraint)

Cascading constraints is not supported

class migrate.changeset.databases.firebird.FBConstraintGenerator(dialect, connection, **kw)

Firebird constraint generator implementation.

class migrate.changeset.databases.firebird.FBSchemaChanger(dialect, connection, **kw)

Firebird schema changer implementation.

visit_table(table)

Rename table not supported

Module oracle

Oracle database specific implementations of changeset classes.

Module postgres

PostgreSQL database specific implementations of changeset classes.

class migrate.changeset.databases.postgres.PGColumnDropper(dialect, connection, **kw)

PostgreSQL column dropper implementation.

class migrate.changeset.databases.postgres.PGColumnGenerator(dialect, connection, **kw)

PostgreSQL column generator implementation.

class migrate.changeset.databases.postgres.PGConstraintDropper(dialect, connection, **kw)

PostgreSQL constaint dropper implementation.

class migrate.changeset.databases.postgres.PGConstraintGenerator(dialect, connection, **kw)

PostgreSQL constraint generator implementation.

class migrate.changeset.databases.postgres.PGSchemaChanger(dialect, connection, **kw)

PostgreSQL schema changer implementation.

Module sqlite

SQLite database specific implementations of changeset classes.

class migrate.changeset.databases.sqlite.SQLiteColumnDropper(dialect, connection, **kw)

SQLite ColumnDropper

class migrate.changeset.databases.sqlite.SQLiteColumnGenerator(dialect, connection, **kw)

SQLite ColumnGenerator

class migrate.changeset.databases.sqlite.SQLiteSchemaChanger(dialect, connection, **kw)

SQLite SchemaChanger

visit_index(index)

Does not support ALTER INDEX

Module visitor

Module for visitor class mapping.

migrate.changeset.databases.visitor.get_dialect_visitor(sa_dialect, name)

Get the visitor implementation for the given dialect.

Finds the visitor implementation based on the dialect class and returns and instance initialized with the given name.

Binds dialect specific preparer to visitor.

migrate.changeset.databases.visitor.get_engine_visitor(engine, name)

Get the visitor implementation for the given database engine.

Parameters:
  • engine (Engine) – SQLAlchemy Engine
  • name (string) – Name of the visitor
Returns:

visitor

migrate.changeset.databases.visitor.run_single_visitor(engine, visitorcallable, element, connection=None, **kwargs)

Taken from sqlalchemy.engine.base.Engine._run_single_visitor() with support for migrate visitors.

Module schema – Additional API to SQLAlchemy for migrations

Schema module providing common schema operations.

migrate.changeset.schema.create_column(column, table=None, *p, **kw)

Create a column, given the table.

API to ChangesetColumn.create().

migrate.changeset.schema.drop_column(column, table=None, *p, **kw)

Drop a column, given the table.

API to ChangesetColumn.drop().

migrate.changeset.schema.alter_column(*p, **k)

Alter a column.

This is a helper function that creates a ColumnDelta and runs it.

Parameters:
  • column – The name of the column to be altered or a ChangesetColumn column representing it.
  • table – A Table or table name to for the table where the column will be changed.
  • engine – The Engine to use for table reflection and schema alterations.
Returns:

A ColumnDelta instance representing the change.

migrate.changeset.schema.rename_table(table, name, engine=None, **kw)

Rename a table.

If Table instance is given, engine is not used.

API to ChangesetTable.rename().

Parameters:
  • table (string or Table instance) – Table to be renamed.
  • name (string) – New name for Table.
  • engine (obj) – Engine instance.
migrate.changeset.schema.rename_index(index, name, table=None, engine=None, **kw)

Rename an index.

If Index instance is given, table and engine are not used.

API to ChangesetIndex.rename().

Parameters:
  • index (string or Index instance) – Index to be renamed.
  • name (string) – New name for index.
  • table (string or Table instance) – Table to which Index is reffered.
  • engine (obj) – Engine instance.
class migrate.changeset.schema.ChangesetTable

Changeset extensions to SQLAlchemy tables.

create_column(column, *p, **kw)

Creates a column.

The column parameter may be a column definition or the name of a column in this table.

API to ChangesetColumn.create()

Parameters:column (Column instance or string) – Column to be created
deregister()

Remove this table from its metadata

drop_column(column, *p, **kw)

Drop a column, given its name or definition.

API to ChangesetColumn.drop()

Parameters:column (Column instance or string) – Column to be droped
rename(name, connection=None, **kwargs)

Rename this table.

Parameters:
class migrate.changeset.schema.ChangesetColumn

Changeset extensions to SQLAlchemy columns.

alter(*p, **k)

Makes a call to alter_column() for the column this method is called on.

copy_fixed(**kw)

Create a copy of this Column, with all attributes.

create(table=None, index_name=None, unique_name=None, primary_key_name=None, populate_default=True, connection=None, **kwargs)

Create this column in the database.

Assumes the given table exists. ALTER TABLE ADD COLUMN, for most databases.

Parameters:
Returns:

self

drop(table=None, connection=None, **kwargs)

Drop this column from the database, leaving its table intact.

ALTER TABLE DROP COLUMN, for most databases.

Parameters:connection (sqlalchemy.engine.base.Connection instance) – reuse connection istead of creating new one.
class migrate.changeset.schema.ChangesetIndex

Changeset extensions to SQLAlchemy Indexes.

rename(name, connection=None, **kwargs)

Change the name of an index.

Parameters:
class migrate.changeset.schema.ChangesetDefaultClause

Implements comparison between DefaultClause instances

class migrate.changeset.schema.ColumnDelta(*p, **kw)

Extracts the differences between two columns/column-parameters

May receive parameters arranged in several different ways:

  • current_column, new_column, *p, **kw

    Additional parameters can be specified to override column differences.

  • current_column, *p, **kw

    Additional parameters alter current_column. Table name is extracted from current_column object. Name is changed to current_column.name from current_name, if current_name is specified.

  • current_col_name, *p, **kw

    Table kw must specified.

Parameters:
  • table (string or Table instance) – Table at which current Column should be bound to. If table name is given, reflection will be used.
  • metadata – A MetaData instance to store reflected table names
  • engine (Engine instance) – When reflecting tables, either engine or metadata must be specified to acquire engine object.
Returns:

ColumnDelta instance provides interface for altered attributes to result_column through dict() alike object.

  • ColumnDelta.result_column is altered column with new attributes
  • ColumnDelta.current_name is current name of column in db
apply_diffs(diffs)

Populate dict and column object with new values

are_column_types_eq(old_type, new_type)

Compares two types to be equal

compare_1_column(col, *p, **k)

Compares one Column object

compare_2_columns(old_col, new_col, *p, **k)

Compares two Column objects

compare_parameters(current_name, *p, **k)

Compares Column objects with reflection

process_column(column)

Processes default values for column

Module migrate.versioning – Database versioning and repository management

This package provides functionality to create and manage repositories of database schema changesets and to apply these changesets to databases.

Module api – Python API commands

This module provides an external API to the versioning system.

Changed in version 0.6.0: migrate.versioning.api.test() and schema diff functions changed order of positional arguments so all accept url and repository as first arguments.

Changed in version 0.5.4: --preview_sql displays source file when using SQL scripts. If Python script is used, it runs the action with mocked engine and returns captured SQL statements.

Changed in version 0.5.4: Deprecated --echo parameter in favour of new migrate.versioning.util.construct_engine() behavior.

migrate.versioning.api.db_version(url, repository, **opts)

%prog db_version URL REPOSITORY_PATH

Show the current version of the repository with the given connection string, under version control of the specified repository.

The url should be any valid SQLAlchemy connection string.

migrate.versioning.api.upgrade(url, repository, version=None, **opts)

%prog upgrade URL REPOSITORY_PATH [VERSION] [–preview_py|–preview_sql]

Upgrade a database to a later version.

This runs the upgrade() function defined in your change scripts.

By default, the database is updated to the latest available version. You may specify a version instead, if you wish.

You may preview the Python or SQL code to be executed, rather than actually executing it, using the appropriate ‘preview’ option.

migrate.versioning.api.drop_version_control(url, repository, **opts)

%prog drop_version_control URL REPOSITORY_PATH

Removes version control from a database.

migrate.versioning.api.help(cmd=None, **opts)

%prog help COMMAND

Displays help on a given command.

migrate.versioning.api.script(description, repository, **opts)

%prog script DESCRIPTION REPOSITORY_PATH

Create an empty change script using the next unused version number appended with the given description.

For instance, manage.py script “Add initial tables” creates: repository/versions/001_Add_initial_tables.py

migrate.versioning.api.test(url, repository, **opts)

%prog test URL REPOSITORY_PATH [VERSION]

Performs the upgrade and downgrade option on the given database. This is not a real test and may leave the database in a bad state. You should therefore better run the test on a copy of your database.

migrate.versioning.api.create(repository, name, **opts)

%prog create REPOSITORY_PATH NAME [–table=TABLE]

Create an empty repository at the specified path.

You can specify the version_table to be used; by default, it is ‘migrate_version’. This table is created in all version-controlled databases.

migrate.versioning.api.manage(file, **opts)

%prog manage FILENAME [VARIABLES...]

Creates a script that runs Migrate with a set of default values.

For example:

%prog manage manage.py --repository=/path/to/repository --url=sqlite:///project.db

would create the script manage.py. The following two commands would then have exactly the same results:

python manage.py version
%prog version --repository=/path/to/repository
migrate.versioning.api.update_db_from_model(url, repository, model, **opts)

%prog update_db_from_model URL REPOSITORY_PATH MODEL

Modify the database to match the structure of the current Python model. This also sets the db_version number to the latest in the repository.

NOTE: This is EXPERIMENTAL.

migrate.versioning.api.create_model(url, repository, **opts)

%prog create_model URL REPOSITORY_PATH [DECLERATIVE=True]

Dump the current database as a Python model to stdout.

NOTE: This is EXPERIMENTAL.

migrate.versioning.api.source(version, dest=None, repository=None, **opts)

%prog source VERSION [DESTINATION] –repository=REPOSITORY_PATH

Display the Python code for a particular version in this repository. Save it to the file at DESTINATION or, if omitted, send to stdout.

migrate.versioning.api.version(repository, **opts)

%prog version REPOSITORY_PATH

Display the latest version available in a repository.

migrate.versioning.api.make_update_script_for_model(url, repository, oldmodel, model, **opts)

%prog make_update_script_for_model URL OLDMODEL MODEL REPOSITORY_PATH

Create a script changing the old Python model to the new (current) Python model, sending to stdout.

NOTE: This is EXPERIMENTAL.

migrate.versioning.api.compare_model_to_db(url, repository, model, **opts)

%prog compare_model_to_db URL REPOSITORY_PATH MODEL

Compare the current model (assumed to be a module level variable of type sqlalchemy.MetaData) against the current database.

NOTE: This is EXPERIMENTAL.

migrate.versioning.api.downgrade(url, repository, version, **opts)

%prog downgrade URL REPOSITORY_PATH VERSION [–preview_py|–preview_sql]

Downgrade a database to an earlier version.

This is the reverse of upgrade; this runs the downgrade() function defined in your change scripts.

You may preview the Python or SQL code to be executed, rather than actually executing it, using the appropriate ‘preview’ option.

migrate.versioning.api.version_control(url, repository, version=None, **opts)

%prog version_control URL REPOSITORY_PATH [VERSION]

Mark a database as under this repository’s version control.

Once a database is under version control, schema changes should only be done via change scripts in this repository.

This creates the table version_table in the database.

The url should be any valid SQLAlchemy connection string.

By default, the database begins at version 0 and is assumed to be empty. If the database is not empty, you may specify a version at which to begin instead. No attempt is made to verify this version’s correctness - the database schema is expected to be identical to what it would be if the database were created from scratch.

migrate.versioning.api.script_sql(database, description, repository, **opts)

%prog script_sql DATABASE DESCRIPTION REPOSITORY_PATH

Create empty change SQL scripts for given DATABASE, where DATABASE is either specific (‘postgresql’, ‘mysql’, ‘oracle’, ‘sqlite’, etc.) or generic (‘default’).

For instance, manage.py script_sql postgresql description creates: repository/versions/001_description_postgresql_upgrade.sql and repository/versions/001_description_postgresql_downgrade.sql

Module genmodel – ORM Model generator

Code to generate a Python model from a database or differences between a model and database.

Some of this is borrowed heavily from the AutoCode project at: http://code.google.com/p/sqlautocode/

class migrate.versioning.genmodel.ModelGenerator(diff, engine, declarative=False)

Various transformations from an A, B diff.

In the implementation, A tends to be called the model and B the database (although this is not true of all diffs). The diff is directionless, but transformations apply the diff in a particular direction, described in the method name.

genB2AMigration(indent=' ')

Generate a migration from B to A.

Was: toUpgradeDowngradePython Assume model (A) is most current and database (B) is out-of-date.

genBDefinition()

Generates the source code for a definition of B.

Assumes a diff where A is empty.

Was: toPython. Assume database (B) is current and model (A) is empty.

runB2A()

Goes from B to A.

Was: applyModel. Apply model (A) to current database (B).

Module pathed – Path utilities

A path/directory class.

class migrate.versioning.pathed.Pathed(path)

A class associated with a path/directory tree.

Only one instance of this class may exist for a particular file; __new__ will return an existing instance if possible

classmethod require_found(path)

Ensures a given path already exists

classmethod require_notfound(path)

Ensures a given path does not already exist

Module repository – Repository management

SQLAlchemy migrate repository management.

class migrate.versioning.repository.Changeset(start, *changes, **k)

A collection of changes to be applied to a database.

Changesets are bound to a repository and manage a set of scripts from that repository.

Behaves like a dict, for the most part. Keys are ordered based on step value.

add(change)

Add new change to changeset

keys()

In a series of upgrades x -> y, keys are version x. Sorted.

run(*p, **k)

Run the changeset scripts

class migrate.versioning.repository.Repository(path)

A project’s change script repository

changeset(database, start, end=None)

Create a changeset to migrate this database from ver. start to end/latest.

Parameters:
  • database (string) – name of database to generate changeset
  • start (int) – version to start at
  • end (int) – version to end at (latest if None given)
Returns:

Changeset instance

classmethod create(path, name, **opts)

Create a repository at a specified path

classmethod create_manage_file(file_, **opts)

Create a project management script (manage.py)

Parameters:
create_script(description, **k)

API to migrate.versioning.version.Collection.create_new_python_version()

create_script_sql(database, description, **k)

API to migrate.versioning.version.Collection.create_new_sql_version()

classmethod prepare_config(tmpl_dir, name, options=None)

Prepare a project configuration file for a new project.

Parameters:
  • tmpl_dir (string) – Path to Repository template
  • config_file (string) – Name of the config file in Repository template
  • name (string) – Repository name
Returns:

Populated config file

classmethod verify(path)

Ensure the target path is a valid repository.

Raises :InvalidRepositoryError
version(*p, **k)

API to migrate.versioning.version.Collection.version

id

Returns repository id specified in config

latest

API to migrate.versioning.version.Collection.latest

use_timestamp_numbering

Returns use_timestamp_numbering specified in config

version_table

Returns version_table name specified in config

Module schema – Migration upgrade/downgrade

Database schema version management.

class migrate.versioning.schema.ControlledSchema(engine, repository)

A database under version control

changeset(version=None)

API to Changeset creation.

Uses self.version for start version and engine.name to get database name.

classmethod compare_model_to_db(engine, model, repository)

Compare the current model against the current database.

classmethod create(engine, repository, version=None)

Declare a database to be under a repository’s version control.

Raises :DatabaseAlreadyControlledError
Returns:ControlledSchema
classmethod create_model(engine, repository, declarative=False)

Dump the current database as a Python model.

drop()

Remove version control from a database.

load()

Load controlled schema version info from DB

update_db_from_model(model)

Modify the database to match the structure of the current Python model.

update_repository_table(startver, endver)

Update version_table with new information

upgrade(version=None)

Upgrade (or downgrade) to a specified version, or latest version.

Module schemadiff – ORM Model differencing

Schema differencing support.

class migrate.versioning.schemadiff.ColDiff(col_A, col_B)

Container for differences in one Column between two Table instances, A and B.

col_A

The Column object for A.

col_B

The Column object for B.

type_A

The most generic type of the Column object in A.

type_B

The most generic type of the Column object in A.

class migrate.versioning.schemadiff.SchemaDiff(metadataA, metadataB, labelA='metadataA', labelB='metadataB', excludeTables=None)

Compute the difference between two MetaData objects.

The string representation of a SchemaDiff will summarise the changes found between the two MetaData objects.

The length of a SchemaDiff will give the number of changes found, enabling it to be used much like a boolean in expressions.

Parameters:
  • metadataA – First MetaData to compare.
  • metadataB – Second MetaData to compare.
  • labelA – The label to use in messages about the first MetaData.
  • labelB – The label to use in messages about the second MetaData.
  • excludeTables – A sequence of table names to exclude.
tables_missing_from_A

A sequence of table names that were found in B but weren’t in A.

tables_missing_from_B

A sequence of table names that were found in A but weren’t in B.

tables_different

A dictionary containing information about tables that were found to be different. It maps table names to a TableDiff objects describing the differences found.

class migrate.versioning.schemadiff.TableDiff

Container for differences in one Table between two MetaData instances, A and B.

columns_missing_from_A

A sequence of column names that were found in B but weren’t in A.

columns_missing_from_B

A sequence of column names that were found in A but weren’t in B.

columns_different

A dictionary containing information about columns that were found to be different. It maps column names to a ColDiff objects describing the differences found.

migrate.versioning.schemadiff.getDiffOfModelAgainstDatabase(metadata, engine, excludeTables=None)

Return differences of model against database.

Returns:object which will evaluate to True if there are differences else False.
migrate.versioning.schemadiff.getDiffOfModelAgainstModel(metadataA, metadataB, excludeTables=None)

Return differences of model against another model.

Returns:object which will evaluate to True if there are differences else False.

Module script – Script actions

class migrate.versioning.script.base.BaseScript(path)

Base class for other types of scripts. All scripts have the following properties:

source (script.source())
The source code of the script
version (script.version())
The version number of the script
operations (script.operations())
The operations defined by the script: upgrade(), downgrade() or both. Returns a tuple of operations. Can also check for an operation with ex. script.operation(Script.ops.up)
run(engine)

Core of each BaseScript subclass. This method executes the script.

source()
Returns:source code of the script.
Return type:string
classmethod verify(path)

Ensure this is a valid script This version simply ensures the script file’s existence

Raises :InvalidScriptError
class migrate.versioning.script.py.PythonScript(path)

Bases: migrate.versioning.script.base.BaseScript

Base for Python scripts

classmethod create(path, **opts)

Create an empty migration script at specified path

Returns:PythonScript instance
classmethod make_update_script_for_model(engine, oldmodel, model, repository, **opts)

Create a migration script based on difference between two SA models.

Parameters:
  • repository (string or Repository instance) – path to migrate repository
  • oldmodel (string or Class) – dotted.module.name:SAClass or SAClass object
  • model (string or Class) – dotted.module.name:SAClass or SAClass object
  • engine (Engine instance) – SQLAlchemy engine
Returns:

Upgrade / Downgrade script

Return type:

string

preview_sql(url, step, **args)

Mocks SQLAlchemy Engine to store all executed calls in a string and runs PythonScript.run

Returns:SQL file
classmethod require_found(path)

Ensures a given path already exists

classmethod require_notfound(path)

Ensures a given path does not already exist

run(engine, step)

Core method of Script file. Exectues update() or downgrade() functions

Parameters:
  • engine (string) – SQLAlchemy Engine
  • step (int) – Operation to run
source()
Returns:source code of the script.
Return type:string
classmethod verify(path)

Ensure this is a valid script This version simply ensures the script file’s existence

Raises :InvalidScriptError
classmethod verify_module(path)

Ensure path is a valid script

Parameters:path (string) – Script location
Raises :InvalidScriptError
Returns:Python module
module

Calls migrate.versioning.script.py.verify_module() and returns it.

class migrate.versioning.script.sql.SqlScript(path)

Bases: migrate.versioning.script.base.BaseScript

A file containing plain SQL statements.

classmethod create(path, **opts)

Create an empty migration script at specified path

Returns:SqlScript instance
classmethod require_found(path)

Ensures a given path already exists

classmethod require_notfound(path)

Ensures a given path does not already exist

run(engine, step=None, executemany=True)

Runs SQL script through raw dbapi execute call

source()
Returns:source code of the script.
Return type:string
classmethod verify(path)

Ensure this is a valid script This version simply ensures the script file’s existence

Raises :InvalidScriptError

Module shell – CLI interface

The migrate command-line tool.

migrate.versioning.shell.main(argv=None, **kwargs)

Shell interface to migrate.versioning.api.

kwargs are default options that can be overriden with passing –some_option as command line option

Parameters:disable_logging (bool) – Let migrate configure logging

Module util – Various utility functions

class migrate.versioning.util.Memoize(fn)

Memoize(fn) - an instance which acts like fn but memoizes its arguments Will only work on functions with non-mutable arguments

ActiveState Code 52201

migrate.versioning.util.asbool(obj)

Do everything to use object as bool

migrate.versioning.util.catch_known_errors(f)

Decorator that catches known api errors

migrate.versioning.util.construct_engine(engine, **opts)

New in version 0.5.4.

Constructs and returns SQLAlchemy engine.

Currently, there are 2 ways to pass create_engine options to migrate.versioning.api functions:

Parameters:
  • engine (string or Engine instance) – connection string or a existing engine
  • engine_dict (dict) – python dictionary of options to pass to create_engine
  • engine_arg_* (string) – keyword parameters to pass to create_engine (evaluated with migrate.versioning.util.guess_obj_type())
Returns:

SQLAlchemy Engine

Note

keyword parameters override engine_dict values.

migrate.versioning.util.guess_obj_type(obj)

Do everything to guess object type from string

Tries to convert to int, bool and finally returns if not succeded.

migrate.versioning.util.load_model(dotted_name)

Import module and use module-level variable”.

Parameters:dotted_name – path to model in form of string: some.python.module:Class

Changed in version 0.5.4.

migrate.versioning.util.with_engine(f)

Decorator for migrate.versioning.api functions to safely close resources after function usage.

Passes engine parameters to construct_engine() and resulting parameter is available as kw[‘engine’].

Engine is disposed after wrapped function is executed.

Module version – Versioning management

class migrate.versioning.version.Collection(path)

A collection of versioning scripts in a repository

create_new_python_version(description, **k)

Create Python files for new version

create_new_sql_version(database, description, **k)

Create SQL files for new version

version(vernum=None)

Returns latest Version if vernum is not given. Otherwise, returns wanted version

FILENAME_WITH_VERSION = <_sre.SRE_Pattern object at 0x42fb350>
latest
Returns:Latest version in Collection
class migrate.versioning.version.Extensions

A namespace for file extensions

class migrate.versioning.version.VerNum(value)

A version number that behaves like a string and int at the same time

class migrate.versioning.version.Version(vernum, path, filelist)

A single version in a collection :param vernum: Version Number :param path: Path to script files :param filelist: List of scripts :type vernum: int, VerNum :type path: string :type filelist: list

add_script(path)

Add script to Collection/Version

script(database=None, operation=None)

Returns SQL or Python Script

SQL_FILENAME = <_sre.SRE_Pattern object at 0x42e3710>
migrate.versioning.version.str_to_filename(s)

Replaces spaces, (double and single) quotes and double underscores to underscores

Module exceptions – Exception definitions

Provide exception classes for migrate

exception migrate.exceptions.ApiError

Base class for API errors.

exception migrate.exceptions.ControlledSchemaError

Base class for controlled schema errors.

exception migrate.exceptions.DatabaseAlreadyControlledError

Database shouldn’t be under version control, but it is

exception migrate.exceptions.DatabaseNotControlledError

Database should be under version control, but it’s not.

exception migrate.exceptions.Error

Error base class.

exception migrate.exceptions.InvalidConstraintError

Invalid constraint error

exception migrate.exceptions.InvalidRepositoryError

Invalid repository error.

exception migrate.exceptions.InvalidScriptError

Invalid script error.

exception migrate.exceptions.InvalidVersionError

Invalid version error.

exception migrate.exceptions.KnownError

A known error condition.

exception migrate.exceptions.MigrateDeprecationWarning

Warning for deprecated features in Migrate

exception migrate.exceptions.NoSuchTableError

The table does not exist.

exception migrate.exceptions.NotSupportedError

Not supported error

exception migrate.exceptions.PathError

Base class for path errors.

exception migrate.exceptions.PathFoundError

A path with a file was required; found no file.

exception migrate.exceptions.PathNotFoundError

A path with no file was required; found a file.

exception migrate.exceptions.RepositoryError

Base class for repository errors.

exception migrate.exceptions.ScriptError

Base class for script errors.

exception migrate.exceptions.UsageError

A known error condition where help should be displayed.

exception migrate.exceptions.WrongRepositoryError

This database is under version control by another repository.