sql – 如何从Rails中的数据库列中删除唯一约束?

前端之家收集整理的这篇文章主要介绍了sql – 如何从Rails中的数据库列中删除唯一约束?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用以下迁移创建了一个表:
class CreateProfilePictures < ActiveRecord::Migration
  def change
    create_table :profile_pictures do |t|
      t.integer :user_id,null: false
      t.integer :picture_id,null: false
      t.timestamps null: false
    end

    add_index :profile_pictures,:user_id,unique: true
    add_index :profile_pictures,:picture_id,unique: true
  end
end

我尝试删除以下的约束:

class FixProfilePic < ActiveRecord::Migration
  def change
    change_column :profile_pictures,:integer,unique: false
  end
end

如果我尝试在多个地方使用相同的picture_id,我仍然会收到一个唯一的约束违规错误.从图片ID删除唯一性约束的正确方法是什么?

解决方法

您必须删除您的索引:
remove_index :profile_pictures,:picture_id

添加添加

add_index :profile_pictures,:picture_id

ActiveRecord::Migration

原文链接:/mssql/75236.html

猜你在找的MsSQL相关文章