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