Lambda-School-Labs/grants-be

View on GitHub
knex/migrations/20200519104302_switch-writer-educations-foreign-key-to-user-id.js

Summary

Maintainability
A
0 mins
Test Coverage

exports.up = function(knex) {
  return knex.schema.table("writer_educations", tbl => {
    tbl.dropColumn("writer_profile_id");
    tbl.integer("writer_id")
      .unsigned()
      .references("users.id")
      .onDelete("CASCADE")
      .onUpdate("CASCADE");
  })
};

exports.down = function(knex) {
  return knex.schema.table("writer_educations", tbl => {
    tbl.dropColumn("writer_id");
    tbl.integer("writer_profile_id")
      .unsigned()
      .references("writer_profiles.id")
      .onDelete("CASCADE")
      .onUpdate("CASCADE");
  })
};