GitHub

PyPI Changelog Tests License

Deprecated compatibility package for sqlite-utils migrations.

Migration support is now built into sqlite-utils 4. Install and use sqlite-utils directly for new projects:

pip install sqlite-utils

New code should import Migrations from sqlite_utils:

from sqlite_utils import Migrations

This package depends on sqlite-utils>=4 and re-exports that class so existing migration files can continue to use their old import:

from sqlite_migrate import Migrations

Run migrations using the sqlite-utils migrate command:

sqlite-utils migrate creatures.db path/to/migrations.py

See the sqlite-utils migrations documentation for the full Python API and CLI usage.

Read the original on github.com ↗