Sang Trần
Sang Trần

Reputation: 2307

Laravel drop Unique Column

enter image description here

How can I drop unique of mail. $table->dropUnique('customers_mail_unique');is not work.

Anybody helps me solving this problem! Thanks so much

Upvotes: 0

Views: 121

Answers (1)

Giedrius Kiršys
Giedrius Kiršys

Reputation: 5314

First of all You don't have to create 3 questions with the same question.

Secondly, You can see, your mail key name is 100, so $table->dropUnique('100'); should work.

Upvotes: 1

Related Questions