An open API service indexing awesome lists of open source software.

https://github.com/typ0520/koa2-bootstrap


https://github.com/typ0520/koa2-bootstrap

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

### [sequelize](http://docs.sequelizejs.com/manual/tutorial/migrations.html)

- Bootstrapping

```
./sequelize init
```

- Creating first Model

```
./sequelize model:generate --name User --attributes username:string,password:string,email:string
```

- Running Migrations

```
./sequelize db:migrate
```