You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 regels
421 B

  1. exports.up = function(knex) {
  2. return knex.schema
  3. .table('users', async function (table) {
  4. table.renameColumn('firstName', 'firstname');
  5. table.renameColumn('lastName', 'lastname');
  6. })
  7. };
  8. exports.down = function(knex) {
  9. return knex.schema
  10. .table('users', async function (table) {
  11. table.renameColumn('firstname', 'firstName');
  12. table.renameColumn('lastname', 'lastName');
  13. })
  14. };