mrnodebot
Version:
Your Friendly NodeJS IRC Bot
15 lines (12 loc) • 400 B
JavaScript
const tableName = 'youTubeLink';
exports.up = function (knex, Promise) {
return knex.schema.table(tableName, (table) => {
table.boolean('restrictions').nullable();
table.boolean('embeddable').nullable();
});
};
exports.down = function (knex, Promise) {
return knex.schema.table(tableName, (table) => {
table.dropColumns('restrictions', 'embeddable');
});
};