]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/models/shared/update.ts
Regenerate video filenames on transcoding
[github/Chocobozzz/PeerTube.git] / server / models / shared / update.ts
1 import { QueryTypes, Transaction } from 'sequelize'
2 import { sequelizeTypescript } from '@server/initializers/database'
3
4 // Sequelize always skip the update if we only update updatedAt field
5 function setAsUpdated (table: string, id: number, transaction?: Transaction) {
6 return sequelizeTypescript.query(
7 `UPDATE "${table}" SET "updatedAt" = :updatedAt WHERE id = :id`,
8 {
9 replacements: { table, id, updatedAt: new Date() },
10 type: QueryTypes.UPDATE,
11 transaction
12 }
13 )
14 }
15
16 export {
17 setAsUpdated
18 }