Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. public function up()
  2. {
  3. Schema::table('contacts', function(Blueprint $table)
  4. {
  5. $table->dropUnique('email');
  6. });
  7. }
  8.  
  9. $table->dropUnique(['name']);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement