exports.down = function (knex: Knex){
    return knex.schema.table('transaction', function(t) {
        t.dropColumn('type');
    });
};