sequelize: add required parameter (#4434)

This commit is contained in:
Izzur Zuhri
2020-10-05 21:00:03 +07:00
committed by GitHub
parent e5d05c41bd
commit 650e421fba

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: