1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-03 17:59:37 +02:00
Peertube/server/core/initializers/migrations/0875-caption-object-storage.ts
Chocobozzz 260447942a
Add ability to put captions in object storage
Deprecate:
 * `path` and `url` of `ActorImage` (used to represent account/channel
   avatars/banners) in favour of `fileUrl`
 * `path` of `AvatarInfo` (used in notifications) in favour of `fileUrl`
 * `captionPath` of `VideoCaption` in favour of `fileUrl`
 * `storyboardPath` of `Storyboard` in favour of `fileUrl`
2025-02-07 09:35:39 +01:00

32 lines
760 B
TypeScript

import { FileStorage } from '@peertube/peertube-models'
import * as Sequelize from 'sequelize'
async function up (utils: {
transaction: Sequelize.Transaction
queryInterface: Sequelize.QueryInterface
sequelize: Sequelize.Sequelize
}): Promise<void> {
const { transaction } = utils
{
await utils.queryInterface.addColumn('videoCaption', 'storage', {
type: Sequelize.INTEGER,
allowNull: true,
defaultValue: FileStorage.FILE_SYSTEM
}, { transaction })
await utils.queryInterface.changeColumn('videoCaption', 'storage', {
type: Sequelize.INTEGER,
allowNull: false,
defaultValue: null
}, { transaction })
}
}
function down (options) {
throw new Error('Not implemented.')
}
export {
down, up
}