Skip to main content

A modern, simple database migration framework for ClickHouse.

Project description

ClickMigrate

A modern, lightweight, and reliable database migration framework for ClickHouse, inspired by Alembic.

ClickMigrate provides a clean CLI and Python API for managing ClickHouse schema migrations without unnecessary complexity.

About

ClickMigrate is an open-source project developed and maintained by QueueForge. It is designed to provide a modern, simple, and reliable migration framework for ClickHouse databases. Learn more about QueueForge at https://queueforge.dev.


Features

  • SQL-based Migrations – Write your migrations in plain .sql files.
  • Automatic Ordering – Lexicographical sorting ensures migrations run in the correct sequence.
  • State Management – Automatically creates and manages a migration history table in ClickHouse.
  • Checksum Validation – Validates SHA-256 checksums to detect modified applied migrations.
  • Flexible Configuration – Supports pyproject.toml, JSON, YAML, or environment variables.
  • Project Initializationclickmigrate init automatically creates a pyproject.toml configuration file with sensible defaults.
  • Dry-Run Mode – Preview which migrations will be applied without altering the database.
  • Python API & CLI – Use ClickMigrate from your terminal or programmatically in Python.
  • Version Command – Display the installed ClickMigrate version with clickmigrate version.

Installation

ClickMigrate requires Python 3.11+.

Install it using pip:

pip install ClickMigrate

Quick Start (CLI)

ClickMigrate provides an Alembic-like CLI for managing your migration workflow.

1. Initialize the Environment

Create the migration directory (default: migrations/) and generate a pyproject.toml configuration file with default settings if one does not already exist.

clickmigrate init

2. Create a Revision

Generate a new sequential SQL migration file.

clickmigrate revision -m "create users table"

Example output:

migrations/
└── 001_create_users_table.sql

Edit the generated file and add your ClickHouse SQL statements.


3. Check Status

View applied and pending migrations, including the version and name of each pending migration.

clickmigrate status

4. Apply Migrations

Run all pending migrations. Progress and execution time are displayed for each migration.

clickmigrate migrate

Preview the execution without applying changes:

clickmigrate migrate --dry-run

5. Validate Migration Integrity

Verify that previously applied migration files have not been modified.

clickmigrate validate

6. Show Version

Display the installed ClickMigrate version.

clickmigrate version

Configuration

ClickMigrate automatically searches for configuration files in your project root.

Supported formats (in priority order):

  1. pyproject.toml (recommended)
  2. clickmigrate.json
  3. clickmigrate.yaml
  4. Environment variables

Option A: pyproject.toml (Recommended)

[tool.clickmigrate]
host = "localhost"
port = 8123
database = "default"
username = "default"
password = "your_secure_password"

migration_directory = "migrations"
migration_table = "clickmigrate_history"

Option B: clickmigrate.json

{
  "host": "localhost",
  "port": 8123,
  "database": "default",
  "username": "default",
  "password": "your_secure_password",
  "migration_directory": "migrations",
  "migration_table": "clickmigrate_history"
}

Option C: clickmigrate.yaml

host: localhost
port: 8123
database: default
username: default
password: your_secure_password

migration_directory: migrations
migration_table: clickmigrate_history

Option D: Environment Variables

CLICKMIGRATE_HOST=localhost
CLICKMIGRATE_PORT=8123
CLICKMIGRATE_DATABASE=default
CLICKMIGRATE_USERNAME=default
CLICKMIGRATE_PASSWORD=your_secure_password

CLICKMIGRATE_MIGRATION_DIRECTORY=migrations
CLICKMIGRATE_MIGRATION_TABLE=clickmigrate_history

Migration Naming

Migration files are executed in lexicographical order.

Example:

001_create_users.sql
002_add_email.sql
003_create_orders.sql
004_add_indexes.sql

Each migration is executed only once and recorded in the migration history table.


Commands

Command Description
clickmigrate init Initialize a migration project
clickmigrate revision -m "message" Create a new migration
clickmigrate status Show applied and pending migrations
clickmigrate migrate Apply pending migrations
clickmigrate migrate --dry-run Preview pending migrations
clickmigrate validate Validate migration checksums
clickmigrate version Show the installed ClickMigrate version
clickmigrate help Show the CLI help message

Requirements

  • Python 3.11+
  • A running ClickHouse server
  • HTTP interface enabled (default port 8123)

License

MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

clickmigrate-1.0.8.tar.gz (9.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

clickmigrate-1.0.8-py3-none-any.whl (11.0 kB view details)

Uploaded Python 3

File details

Details for the file clickmigrate-1.0.8.tar.gz.

File metadata

  • Download URL: clickmigrate-1.0.8.tar.gz
  • Upload date:
  • Size: 9.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for clickmigrate-1.0.8.tar.gz
Algorithm Hash digest
SHA256 577bbb85b7a9913280921945d5ee5d60ae32d6f2c9f182e249715739b75e02d0
MD5 b8c37362ecca9d65859d2bd20caa5f8d
BLAKE2b-256 8738e456967c3445b6d8c22f442dee4e466089e13c7bc1ad047ceebe80a1cbc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickmigrate-1.0.8.tar.gz:

Publisher: publish.yml on QueueForge/ClickMigrate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file clickmigrate-1.0.8-py3-none-any.whl.

File metadata

  • Download URL: clickmigrate-1.0.8-py3-none-any.whl
  • Upload date:
  • Size: 11.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for clickmigrate-1.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 eb6be71876dea2e9a978efc307981c3dbd866e0e954d5d9b7f7618f060f063d6
MD5 54bb1e180bf89d038d3e1e5ae090100e
BLAKE2b-256 dc849fe824b9e7f1456612015f962a0bb39891097fdefe2d41263bb216d3a539

See more details on using hashes here.

Provenance

The following attestation bundles were made for clickmigrate-1.0.8-py3-none-any.whl:

Publisher: publish.yml on QueueForge/ClickMigrate

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page