Guest User

Untitled

a guest
Jan 15th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. $table->unique('email');
  2. $table->unique('email', 'optional_custom_index_name');
  3. $table->index('email');
  4. $table->index('email', 'optional_custom_index_name');
  5. $table->dropUnique('contacts_email_unique');
  6. $table->dropIndex('contacts_email_unique');
  7. $table->dropForeign('contacts_user_id_foreign');
  8.  
  9. $table->integer('customer_id')->index();
  10. $table->foreign('customer_id')->references('id')->on('customers')->onDelete('cascade');
  11. Schema::table('customers', function (Blueprint $table) {
  12. $table->dropColumn('customer_group_id');
  13. });
Add Comment
Please, Sign In to add comment