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

View on GitHub
data/migrations/20201216145909_change_vote_to_integer.js

Summary

Maintainability
A
1 hr
Test Coverage

exports.up = function(knex) {
    return knex.schema.table('Votes', table => {
        table.dropColumn('Vote');
    })
};

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