mrnodebot
Version:
Your Friendly NodeJS IRC Bot
14 lines (11 loc) • 338 B
JavaScript
const tableName = 'youTubeLink';
exports.up = function (knex, Promise) {
return knex.schema.table(tableName, (table) => {
table.timestamp('lastChecked').nullable();
});
};
exports.down = function (knex, Promise) {
return knex.schema.table(tableName, (table) => {
table.dropColumns('lastChecked');
});
};