2018-04-21 09:39:38 -04:00
|
|
|
exports.up = async function (knex, Promise) {
|
2020-08-12 20:38:24 -04:00
|
|
|
await knex.schema.table("threads", table => {
|
|
|
|
table.string("alert_id", 20).nullable().defaultTo(null).after("scheduled_close_name");
|
2018-04-21 09:39:38 -04:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.down = async function(knex, Promise) {
|
2020-08-12 20:38:24 -04:00
|
|
|
await knex.schema.table("threads", table => {
|
|
|
|
table.dropColumn("alert_id");
|
2018-04-21 09:39:38 -04:00
|
|
|
});
|
|
|
|
};
|