2020-08-14 21:48:43 +00:00
|
|
|
const Migration = require('hexo-component-inferno/lib/core/migrate').Migration;
|
|
|
|
|
|
|
|
module.exports = class extends Migration {
|
|
|
|
constructor() {
|
|
|
|
super('4.0.0', null);
|
|
|
|
}
|
|
|
|
|
|
|
|
upgrade(config) {
|
2020-08-24 05:46:11 +00:00
|
|
|
if (typeof config.article === 'object') {
|
|
|
|
delete config.article.thumbnail;
|
|
|
|
}
|
2020-08-14 21:48:43 +00:00
|
|
|
return config;
|
|
|
|
}
|
|
|
|
};
|