chore: add some basic README files

This commit is contained in:
Joakim Carlstein 2023-11-15 10:32:47 +01:00
parent 9484c03e48
commit 50fce0a5ed
10 changed files with 78 additions and 0 deletions

View file

@ -0,0 +1,21 @@
# emigrate
Emigrate is a tool for managing database migrations. It is designed to be simple yet support advanced setups, modular and extensible.
## Installation
Install Emigrate in your project:
```bash
npm install --save-dev emigrate
```
## Usage
Create a new migration:
```bash
emigrate new -d migrations -e .js create some fancy table
```
Will create a new empty JavaScript migration file with the name "YYYYMMDDHHmmssuuu_create_some_fancy_table.js" in the `migrations` directory.