exports.up = function(knex) { return knex.schema.table('visits', function (table) { table.text('provider').defaultTo("N/A"); }); }; exports.down = function(knex) { };