8 lines
88 B
JavaScript
8 lines
88 B
JavaScript
|
|
exports.up = function(next){
|
|
next();
|
|
};
|
|
|
|
exports.down = function(next){
|
|
next();
|
|
};
|