UNPKG

mrnodebot

Version:
15 lines (12 loc) 400 B
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'); }); };