12 lines
235 B
JavaScript
12 lines
235 B
JavaScript
![]() |
const Migration = require('hexo-component-inferno/lib/core/migrate').Migration;
|
||
|
|
||
|
module.exports = class extends Migration {
|
||
|
constructor() {
|
||
|
super('5.0.0', null);
|
||
|
}
|
||
|
|
||
|
upgrade(config) {
|
||
|
return config;
|
||
|
}
|
||
|
};
|