2019-03-06 14:37:36 -05:00
|
|
|
exports.up = async function(knex, Promise) {
|
2020-08-12 20:38:24 -04:00
|
|
|
await knex.schema.table("threads", table => {
|
|
|
|
table.dateTime("scheduled_suspend_at").index().nullable().defaultTo(null).after("channel_id");
|
|
|
|
table.string("scheduled_suspend_id", 20).nullable().defaultTo(null).after("channel_id");
|
|
|
|
table.string("scheduled_suspend_name", 128).nullable().defaultTo(null).after("channel_id");
|
2019-03-06 14:37:36 -05:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.down = async function(knex, Promise) {
|
2020-08-12 20:38:24 -04:00
|
|
|
await knex.schema.table("threads", table => {
|
|
|
|
table.dropColumn("scheduled_suspend_at");
|
|
|
|
table.dropColumn("scheduled_suspend_id");
|
|
|
|
table.dropColumn("scheduled_suspend_name");
|
2019-03-06 14:37:36 -05:00
|
|
|
});
|
|
|
|
};
|