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-utilsNew code should import Migrations from sqlite_utils:
from sqlite_utils import MigrationsThis 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 MigrationsRun migrations using the sqlite-utils migrate command:
sqlite-utils migrate creatures.db path/to/migrations.pySee the sqlite-utils migrations documentation for the full Python API and CLI usage.