sails-hook-migrate
Version:
Uses db-migrate to handle sails migration more efficiently/safely
38 lines (24 loc) • 761 B
Markdown
# Sails Hook Migrate
Uses [DB Migrate](https://github.com/db-migrate/node-db-migrate) to handle database migrations
automatically when lifting sails.
Supported Databases:
- MySQL
- PostgreSQL
- sqlite3
- MongoDB
## Dependencies (optional)
**Highly recommended** to use with `sails-generate-migrate` to create migration scripts from the command line.
```sh
npm i -S sails-generate-migrate
```
## Installation
```sh
npm i -S sails-generate-migrate sails-hook-migrate
```
## Usage
Create a migrations folder and run sails lift!
- Create a `migrations` folder
- `sails lift`
Migrate will detect the connection specified by your sails config and run migrate up. You can also override
the connection settings in the configuration.
## Configuration