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