sequelize / express-example

A proposal for the usage of Sequelize within an Express.JS application.
MIT License
2.5k stars 770 forks source link

Can I ask a question? #58

Closed lxiaoixi closed 7 years ago

lxiaoixi commented 7 years ago

I want to know the file of the migrations's function

lxiaoixi commented 7 years ago

I want to know the function of the file migrants,and if I want to add a new attritute to a table,for example user table, I don't know should I change which file,/migrants/user or models/user or both?

ahelord commented 7 years ago

@lxiaoixi When versioning the code both because the migration alters the model

lxiaoixi commented 7 years ago

Now,I konw,thanks!