20181127121352_v0.1.1.js
360 Bytes
exports.up = function(knex) {
return knex.schema.table('APAREMP', function(table) {
table.decimal('latitud', 10, 7);
table.decimal('longitud', 10, 7);
});
};
exports.down = function(knex) {
return knex.schema.table('APAREMP', function(table) {
table.dropColumn('latitud');
table.dropColumn('longitud');
});
};