dbtools 1.1.0
dbtools: ^1.1.0 copied to clipboard
A simple CLI application for managing the database during developing.
A simple PostgreSQL database project.
Create the database #
dbtool create
Now an empty database with UTF-8 encoding is created from the template0.
Migrate the database #
dbtool migrate
Now the database schema corresponds to the local migrations.
Clean the database #
dbtool clean
Now the database is cleared from all migrations commited earler. It is empty now.
Drop the database #
dbtool drop
The database has been dropped.