mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05: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
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ const {combineNonTransactionalMigrations,createAddColumnMigration} = require('..
|
||||||
|
|
||||||
module.exports = combineNonTransactionalMigrations(
|
module.exports = combineNonTransactionalMigrations(
|
||||||
createAddColumnMigration('post_revisions', 'feature_image_caption', {
|
createAddColumnMigration('post_revisions', 'feature_image_caption', {
|
||||||
type: 'string',
|
type: 'text',
|
||||||
maxlength: 65535,
|
maxlength: 65535,
|
||||||
nullable: true
|
nullable: true
|
||||||
}),
|
}),
|
||||||
|
|
Loading…
Add table
Reference in a new issue