Fixed post_revisions title migration

This was incorrectly using the lenght of 24 rather than 2000
This commit is contained in:
Fabien "egg" O'Carroll 2023-04-21 12:02:42 +01:00
parent 169a56d1bb
commit bf37e6273a

View File

@ -11,7 +11,7 @@ module.exports = combineNonTransactionalMigrations(
}), }),
createAddColumnMigration('post_revisions', 'title', { createAddColumnMigration('post_revisions', 'title', {
type: 'string', type: 'string',
maxlength: 24, maxlength: 2000,
nullable: true, nullable: true,
validations: { validations: {
isLength: { isLength: {