不要怂,就是干,撸起袖子干!

schema.md 555 Bytes

Syncing

sequelize.sync() will, based on your model definitions, create any missing tables. If force: true it will first drop tables before recreating them.

Migrations / Manual schema changes

Sequelize has a sister library for handling execution and logging of migration tasks. Sequelize provides a list of ways to programmatically create or change a table schema.

createTable

addColumn

changeColumn

removeColumn

addIndex

removeIndex

addConstraint

removeConstraint