sequelize: add required parameter (#4434)

beep
Izzur Zuhri 2020-10-05 21:00:03 +07:00 committed by GitHub
parent e5d05c41bd
commit 650e421fba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -3,9 +3,9 @@
> Promise-based Node.js ORM for Postgres, MySQL, MariaDB, SQLite and Microsoft SQL Server.
> More information: <https://sequelize.org/>.
- Create a model and a migration file:
- Create a model with 3 fields and a migration file:
`sequelize model:generate --name {{table_name}}`
`sequelize model:generate --name {{table_name}} --attributes {{field1:integer,field2:string,field3:boolean}}`
- Run the migration file: