-
-
Notifications
You must be signed in to change notification settings - Fork 526
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
054df9a
commit 61104be
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
The Sequelize Command Line Interface (CLI) Frequently Asked Question | ||
|
||
## How can I generate a model? | ||
Specify model name with `--name` argument. List of table fields can be passed with `--attributes` option | ||
``` | ||
$ sequelize model:create --name User --attributes name:string,state:boolean,birth:date,card:integer | ||
``` | ||
|
||
## What is the command to executes all migrations? | ||
``` | ||
sequelize db:migrate | ||
``` | ||
## How can I make a migrations rollback? | ||
|
||
``` | ||
sequelize db:migrate:undo:all | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters