/* eslint-disable jsdoc/valid-types */ // eslint doesn't seem to understand, but vscode does. 'use strict'; /** * @param { import("knex").Knex } knex * @returns { Promise } */ exports.up = function(knex) { return knex.schema.alterTable("inbox", (table) => { table.string("signedby"); }); }; /** * @param { import("knex").Knex } knex * @returns { Promise } */ exports.down = function(knex) { return knex.schema.alterTable("inbox", (table) => { table.dropColumn("signedby"); }); };