'use strict' module.exports = { up: (queryInterface, Sequelize) => { return queryInterface.createTable('fed_users', { ap_id: { type: Sequelize.STRING, primaryKey: true }, object: { type: Sequelize.JSON }, createdAt: { allowNull: false, type: Sequelize.DATE }, updatedAt: { allowNull: false, type: Sequelize.DATE } }) }, down: (queryInterface, Sequelize) => { return queryInterface.dropTable('fed_users') } }