website/migrations/20200807101832-relationship...

25 lines
502 B
JavaScript

'use strict';
module.exports = {
up: (queryInterface, Sequelize) => {
return queryInterface.createTable('relationships', {
id: {
type: Sequelize.INTEGER,
primaryKey: true,
autoIncrement: true
},
friend1: {
type: Sequelize.INTEGER,
unique: false,
},
friend2: Sequelize.INTEGER
}, {
charset: 'utf8mb4'
})
},
down: (queryInterface, Sequelize) => {
return queryInterface.dropTable('relationships');
}
};