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

View on GitHub
data/migrations/20201210171347__children-score-column.js

Summary

Maintainability
A
45 mins
Test Coverage
exports.up = function (knex) {
    return knex.schema.table('Children', table => {
        table.integer('Total_Points').defaultTo(0).notNullable()
    });
};

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