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
anddown
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!