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

View on GitHub
data/migrations/20201215165436__date_column_in_faceoffs.js

Summary

Maintainability
A
45 mins
Test Coverage

exports.up = function(knex) {
    return knex.schema.table('Faceoffs', table => {
        table.timestamp('Date').defaultTo(knex.fn.now());
    })
};

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