Skip to content

Commit

Permalink
fix: migration compilation error (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
sky3d authored May 6, 2022
1 parent f895167 commit 94d1368
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/migrations/20220428115740_statuses-text-1024.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ exports.up = async (knex) => {
});
};

exports.down = async () => {
exports.down = async (knex) => {
return knex.schema.alterTable(kTable, (table) => {
table.string(kColumn, 512).alter();
});
Expand Down

0 comments on commit 94d1368

Please sign in to comment.