mango-stats-v3/migrations/20210216035849-create-perp-...

39 lines
843 B
JavaScript

"use strict"
module.exports = {
up: async (queryInterface, Sequelize) => {
await queryInterface.createTable(
"perp_market_stats",
{
name: {
type: Sequelize.STRING,
},
publicKey: {
type: Sequelize.STRING,
},
mangoGroup: {
type: Sequelize.STRING,
},
longFunding: {
type: Sequelize.DECIMAL,
},
shortFunding: {
type: Sequelize.DECIMAL,
},
openInterest: {
type: Sequelize.DECIMAL,
},
baseOraclePrice: {
type: Sequelize.DECIMAL,
},
time: {
type: Sequelize.DATE,
},
},
{ timestamps: false }
)
},
down: async (queryInterface, Sequelize) => {
await queryInterface.dropTable("perp_market_stats")
},
}