Lambda-School-Labs/Labs26-StorySquad-BE-TeamB

View on GitHub
data/migrations/20210131130814_add_achievements_to_child_table.js

Summary

Maintainability
A
45 mins
Test Coverage

exports.up = function(knex) {
  return knex.schema
  .table('Children', table =>{
      table.specificType('Achievements', 'integer ARRAY').defaultTo(knex.raw('ARRAY[]::integer[]'));
  })
};

exports.down = function(knex) {
  return knex.schema
    .table('Children', table =>{
        table.dropColumn('Achievements');
    })
};