mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-24 14:43:08 +03:00
Fixed column type for feature_image_caption on post revisions
MySQL needs to use the TEXT type for large columns like this.
This commit is contained in:
parent
58efca6c04
commit
960faf7d93
@ -2,7 +2,7 @@ const {combineNonTransactionalMigrations,createAddColumnMigration} = require('..
|
||||
|
||||
module.exports = combineNonTransactionalMigrations(
|
||||
createAddColumnMigration('post_revisions', 'feature_image_caption', {
|
||||
type: 'string',
|
||||
type: 'text',
|
||||
maxlength: 65535,
|
||||
nullable: true
|
||||
}),
|
||||
|
Loading…
Reference in New Issue
Block a user