// ---------------------------------------------------------------------------
-const LAST_MIGRATION_VERSION = 375
+const LAST_MIGRATION_VERSION = 380
// ---------------------------------------------------------------------------
--- /dev/null
+import * as Sequelize from 'sequelize'
+
+async function up (utils: {
+ transaction: Sequelize.Transaction,
+ queryInterface: Sequelize.QueryInterface,
+ sequelize: Sequelize.Sequelize,
+ 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
+}
logger.debug('Adding %d views to video %d in hour %d.', views, videoId, hour)
try {
+ const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(videoId)
+ if (!video) {
+ logger.debug('Video %d does not exist anymore, skipping videos view addition.', videoId)
+ continue
+ }
+
await VideoViewModel.create({
startDate,
endDate,
videoId
})
- const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(videoId)
if (video.isOwned()) {
// If this is a remote video, the origin instance will send us an update
await VideoModel.incrementViews(videoId, views)
await federateVideoIfNeeded(video, false)
}
} catch (err) {
- logger.debug('Cannot create video views for video %d in hour %d. Maybe the video does not exist anymore?', videoId, hour)
+ logger.error('Cannot create video views for video %d in hour %d.', videoId, hour, { err })
}
}
await Redis.Instance.deleteVideoViews(videoId, hour)
} catch (err) {
- logger.error('Cannot update video views of video %d in hour %d.', videoId, hour)
+ logger.error('Cannot update video views of video %d in hour %d.', videoId, hour, { err })
}
}
}