sync-2.ejs 219 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 // create all tables... now! sequelize.sync(callback) // and drop it! sequelize.drop(callback) // with error handling: sequelize.[sync|drop](function(errors) { if(errors.length > 0) // whooops else // woot woot })