https://github.com/typ0520/koa2-bootstrap
https://github.com/typ0520/koa2-bootstrap
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/typ0520/koa2-bootstrap
- Owner: typ0520
- License: mit
- Created: 2018-11-22T08:06:17.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T15:50:20.000Z (over 3 years ago)
- Last Synced: 2025-01-15T08:59:33.658Z (over 1 year ago)
- Language: JavaScript
- Size: 1010 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```