You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20211003195015_create_match_queues_table.js 397B

123456789101112
  1. exports.up = function (knex) {
  2. return knex.schema.createTable('match_queues', function (table) {
  3. table.increments('match_queue_id').primary()
  4. table.integer('profile_id').notNullable()
  5. table.integer('target_id').notNullable()
  6. table.boolean('is_deleted').notNullable()
  7. })
  8. }
  9. exports.down = function (knex) {
  10. return knex.schema.dropTable('match_queues')
  11. }