Lambda-School-Labs/grants-be

View on GitHub
knex/migrations/20200516185010_add-founding-date-to-applicant-profiles.js

Summary

Maintainability
A
0 mins
Test Coverage

exports.up = function(knex) {
  return knex.schema.table('applicant_profiles', tbl => {
    tbl.date('founding_date');
  })
};

exports.down = function(knex) {
  return knex.schema.table('applicant_profiles', tbl => {
    tbl.dropColumn('founding_date');
  })
};