您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }