fix build

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2022-02-04 10:56:29 +01:00
parent 2441d1cf59
commit 1dd5a02e91
14 changed files with 103 additions and 126 deletions
@@ -28,7 +28,7 @@ exports.up = async function up(knex) {
.notNullable()
.defaultTo(knex.fn.now())
.comment('The creation time of the key')
.alter();
.alter({ alterType: true });
});
}
};
@@ -45,7 +45,7 @@ exports.down = async function down(knex) {
.notNullable()
.defaultTo(knex.fn.now())
.comment('The creation time of the key')
.alter();
.alter({ alterType: true });
});
}
};