1
0
Fork 0

Fix playlist description length

This commit is contained in:
Chocobozzz 2020-05-05 16:34:50 +02:00
parent 1c32067367
commit 4c576aca1c
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 27 additions and 1 deletions

View File

@ -14,7 +14,7 @@ import { CONFIG, registerConfigChangedHandler } from './config'
// ---------------------------------------------------------------------------
const LAST_MIGRATION_VERSION = 495
const LAST_MIGRATION_VERSION = 500
// ---------------------------------------------------------------------------

View File

@ -0,0 +1,26 @@
import * as Sequelize from 'sequelize'
async function up (utils: {
transaction: Sequelize.Transaction
queryInterface: Sequelize.QueryInterface
sequelize: Sequelize.Sequelize
}): Promise<void> {
{
const description = {
type: Sequelize.STRING(1000),
allowNull: true
}
await utils.queryInterface.changeColumn('videoPlaylist', 'description', description)
}
}
function down (options) {
throw new Error('Not implemented.')
}
export {
up,
down
}