PeerTube/server/initializers/migrations/0380-cleanup-timestamps.ts

30 lines
686 B
TypeScript
Raw Normal View History

2019-05-21 13:14:27 +02:00
import * as Sequelize from 'sequelize'
async function up (utils: {
2020-01-31 16:56:52 +01:00
transaction: Sequelize.Transaction
queryInterface: Sequelize.QueryInterface
sequelize: Sequelize.Sequelize
2019-05-21 13:14:27 +02:00
db: any
}): Promise<void> {
try {
await utils.queryInterface.removeColumn('application', 'createdAt')
} catch { /* the column could not exist */ }
try {
await utils.queryInterface.removeColumn('application', 'updatedAt')
} catch { /* the column could not exist */ }
try {
await utils.queryInterface.removeColumn('videoView', 'updatedAt')
} catch { /* the column could not exist */ }
}
function down (options) {
throw new Error('Not implemented.')
}
export {
up,
down
}