Skip to content

v0.1.3

Latest
Compare
Choose a tag to compare
@SpaceShaman SpaceShaman released this 05 Dec 16:31
· 5 commits to master since this release

The first release of SQLift - a simple CLI tool for SQL database migrations. This version introduces basic features for managing migrations for SQLite and PostgreSQL databases.

Key Features

  • Installation: Install via pip install SQLift.
  • Migrations: Create and manage SQL migrations using up and down commands.
    • sqlift up: Applies all pending migrations.
    • sqlift up <migration_name>: Applies migrations up to the specified version.
    • sqlift down: Reverts all migrations.
    • sqlift down <migration_name>: Reverts migrations down to the specified version.
  • Configuration: Set up database connection using the DB_URL environment variable.

Feel free to use and provide feedback!