dbmigrations 0.1.0
Simple tool for managing Database migrations
To use this package, run the following command in your project's root directory:
Manual usage
Put the following dependency into your project's dependences section:
Database migration tool
Database migration tool to apply all available migrations from db/migrations
(customizable) directory.
It is inspired by https://github.com/amberframework/micrate.
Install
Clone this repo and run dub build
. Copy the generated binary to /usr/local/bin
.
git clone https://github.com/aravindavk/dbmigrations.git
cd dbmigrations
dub build --compiler=ldc2 -b release
sudo cp dbmigrations /usr/local/bin/
Usage
Create the migrations directory in your project directory. For example,
cd myproject
mkdir -p db/migrations
Scaffold
Now create the migration file by running the below command.
$ dbmigrations -d ./db/migrations scaffold -n users
Created ./db/migrations/20240524213223-users.sql
Open the file and add the SQL for upgrade under -- +UP
and downgrade SQL under -- +DOWN
section. Example,
-- +UP
-- SQL in section '+UP' is included when this migration is applied
CREATE TABLE users(
id BIGSERIAL PRIMARY KEY,
name VARCHAR NOT NULL,
email VARCHAR NOT NULL,
password_hash VARCHAR NOT NULL,
created_at TIMESTAMP,
updated_at TIMESTAMP
);
-- +DOWN
-- SQL section '+DOWN' is included when this migration is rolled back
DROP TABLE users;
Upgrade
Run dbmigrations up
to generate the migration file based on given timestamp.
$ dbmigrations -d ./db/migrations up
Included files:
20240524135055-users.sql
Migration file generated. Path: /tmp/dbmigration.sql
Execute the SQL file to run migration (upgrade/downgrade). For example, Postgres
sudo -u postgres psql mydb -f /tmp/dbmigration.sql
To generate the migration file based on the given timestamp.
$ dbmigrations -d ./db/migrations up -t 20240524135847
Status
$ dbmigrations -d ./db/migrations status
pending 20240524135055-users.sql
$ dbmigrations -d ./db/migrations status -t 20240524135055
done 20240524135055-users.sql
Downgrade(one by one)
Generates the migration file based on the given timestamp. Rollback only the last migration after the given timestamp.
$ dbmigrations -d ./db/migrations down -t 20240524135055
Included files:
20240524135055-users.sql
Migration file generated. Path: /tmp/dbmigration.sql
Execute the SQL file to run migration (upgrade/downgrade). For example, Postgres
sudo -u postgres psql mydb -f /tmp/dbmigration.sql
Contributing
- Fork it (https://github.com/aravindavk/dbmigrations/fork)
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -asm 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Contributors
- Aravinda VK - Creator and Maintainer
- Registered by Aravinda VK
- 0.1.0 released 2 months ago
- aravindavk/dbmigrations
- MIT
- Copyright © 2024, Aravinda VK <[email protected]>
- Authors:
- Dependencies:
- dpq2
- Versions:
-
0.3.0 2024-Sep-30 0.2.1 2024-Sep-02 0.2.0 2024-Sep-02 0.1.0 2024-Sep-02 ~main 2024-Sep-30 - Download Stats:
-
-
0 downloads today
-
0 downloads this week
-
0 downloads this month
-
3 downloads total
-
- Score:
- 0.3
- Short URL:
- dbmigrations.dub.pm