Structured migration of data in SQLite databases
Project description
fastmigrate
The fastmigrate library helps you with structured migration of data in SQLite. That is, it gives you a way to specify and run a sequence of updates to your database schema, while preserving user data.
Programmatic Usage
Once you have added a migrations/ directory to your app, you would typically use fastmigrate in your application code like so:
from fastmigrate.core import ensure_versioned_db, run_migrations
# At application startup:
db_path = "path/to/database.db"
migrations_dir = "path/to/migrations"
# Create/verify there is a versioned database,
# which marks it as managed by fastmigrate, or fail.
current_version = ensure_versioned_db(db_path)
# Apply any pending migrations
success = run_migrations(db_path, migrations_dir, verbose=False)
if not success:
# Handle migration failure
print("Database migration failed!")
fastmigrate will then detect every validly-named migration script in the migrations directory, select the ones with version numbers greater than the current db version number, and apply the files in alphabetical order, updating the db's version number as it proceeds, stopping if any migration fails.
This will guarantee that all subsequent code will enccounter a database at the schema version defined by your highest-numbered migration script. So when you deploy updates to your app, those updates should include any new migration scripts along with modifications to code, which should now expect the new db schema.
Key concepts:
Fastmigrate implements the standard database migration pattern, so the key concepts may be familiar.
-
the version number of a database:
- this is an
intvalue stored in a table_metain a field calledversion. This table will be enforced to have exactly one row. This value will be the "db version value" of the last migration script which was run on that database.
- this is an
-
the migrations directory is a directory which contains the migration scripts, which initialize the db to its initial version and update it to the latest version as needed.
-
a migration script must be:
- a file which conforms to the "fastmigrate naming rule"; and,
- one of the following:
- a .py or .sh file. In this case, fastmigrate will execute the file, pass the path to the db as the first positional argument. Fastmigrate will interpret a non-zero exit code as failure.
- a .sql file. In this case, fastmigrate will execute the SQL script against the database.
-
the fastmigrate naming rule is that every migration script must have a name matching this pattern:
[index]-[description].[fileExtension], where[index]must be a string representing 4-digit integer. This naming convention defines the order in which scripts should be run. -
attempting a migration is:
- determining the current version of a database
- determining if there are any migration scripts with versions higher than the db version
- trying to run those scripts
Command-line Usage
To familiarize yourself with its action, or in development, you might want to run fastmigrate from the command line.
When you run fastmigrate, it will look for migration scripts in ./migrations/ and a database at ./data/database.db. These values can also be overridden by CLI arguments or by values set in the .fastmigrate configuration file, which is in ini format.
Command Line Options
-
Basic Usage:
fastmigrateThis will use the defaults, looking for migrations in
./migrations/and the database in./data/database.db. -
Specify Paths:
fastmigrate --db path/to/database.db --migrations path/to/migrations -
Create Database:
fastmigrate --createdbCreates an empty database with the _meta table if it doesn't exist.
-
Database Backup:
fastmigrate --backupCreates a timestamped backup of the database before running any migrations. The backup file will be named
database.db.YYYYMMDD_HHMMSS.backup.
Important Considerations
-
Sequential Execution: Migrations are executed in order based on their index numbers. If migration #3 fails, migrations #1-2 remain applied and the process stops.
-
Version Integrity: The database version is only updated after a migration is successfully completed.
-
External Side Effects: Python and Shell scripts may have side effects outside the database (file operations, network calls) that are not managed by fastmigrate.
-
Database Locking: During migration, the database may be locked. Applications should not attempt to access it while migrations are running.
-
Backups: For safety, you can use the
--backupoption to create a backup before running migrations.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fastmigrate-0.2.1.tar.gz.
File metadata
- Download URL: fastmigrate-0.2.1.tar.gz
- Upload date:
- Size: 18.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d208bce77d843c92fb961be378d7b10a092ac3124997388bcfeca6d2c6393ee
|
|
| MD5 |
85ddb25b4aefca8bc9ae8fb67db4ab70
|
|
| BLAKE2b-256 |
4dd4f77cfa5538770000044bb833b20b3bc977df76b0e40f0290269f78d47d95
|
File details
Details for the file fastmigrate-0.2.1-py3-none-any.whl.
File metadata
- Download URL: fastmigrate-0.2.1-py3-none-any.whl
- Upload date:
- Size: 9.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99f6739f4998cc1dc6bbdcdd75d8eb20112581f409fdc7d6dcc0659694ed8699
|
|
| MD5 |
be7e9fde314b92289c579dcb6eebcba4
|
|
| BLAKE2b-256 |
8edfa8e9ba8fa4170726d6a4264589fa98da7525a6cbbc185fb6abffa9760e06
|