aboutsummaryrefslogtreecommitdiff
path: root/db/migrations/20190306211534_add_scheduled_suspend_to_threads.js
blob: a22b5f3849cfc40c67050905c17136dfe4551cad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
exports.up = async function(knex, Promise) {
  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');
  });
};

exports.down = async function(knex, Promise) {
  await knex.schema.table('threads', table => {
    table.dropColumn('scheduled_suspend_at');
    table.dropColumn('scheduled_suspend_id');
    table.dropColumn('scheduled_suspend_name');
  });
};