20111117063700-createPerson.js 325 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 module.exports = { up: function(migration, DataTypes) { migration.createTable('Person', { name: DataTypes.STRING, isBetaMember: { type: DataTypes.BOOLEAN, defaultValue: false, allowNull: false } }) }, down: function(migration) { migration.dropTable('Person') } }