mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-25 20:03:12 +03:00
Fixed post_revisions title migration
This was incorrectly using the lenght of 24 rather than 2000
This commit is contained in:
parent
169a56d1bb
commit
bf37e6273a
@ -11,7 +11,7 @@ module.exports = combineNonTransactionalMigrations(
|
||||
}),
|
||||
createAddColumnMigration('post_revisions', 'title', {
|
||||
type: 'string',
|
||||
maxlength: 24,
|
||||
maxlength: 2000,
|
||||
nullable: true,
|
||||
validations: {
|
||||
isLength: {
|
||||
|
Loading…
Reference in New Issue
Block a user