mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-03 17:59:37 +02:00

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`
32 lines
760 B
TypeScript
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
|
|
}
|