2019-06-09 13:04:40 -04:00
|
|
|
exports.up = async function(knex, Promise) {
|
2020-08-12 20:38:24 -04:00
|
|
|
await knex.schema.table("blocked_users", table => {
|
|
|
|
table.dateTime("expires_at").nullable();
|
2019-06-09 13:04:40 -04:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.down = async function(knex, Promise) {
|
2020-08-12 20:38:24 -04:00
|
|
|
await knex.schema.table("blocked_users", table => {
|
|
|
|
table.dropColumn("expires_at");
|
2019-06-09 13:04:40 -04:00
|
|
|
});
|
|
|
|
};
|