Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

20220403112041_create_blocked_profiles_table.js 416B

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