20111117063700-createPerson.js 207 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 module.exports = { up: function(migration, DataTypes) { migration.createTable('Person', { name: DataTypes.STRING }) }, down: function(migration) { migration.dropTable('Person') } }