mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-26 12:21:36 +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', {
|
createAddColumnMigration('post_revisions', 'title', {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
maxlength: 24,
|
maxlength: 2000,
|
||||||
nullable: true,
|
nullable: true,
|
||||||
validations: {
|
validations: {
|
||||||
isLength: {
|
isLength: {
|
||||||
|
Loading…
Reference in New Issue
Block a user