From 562dbfa803aa8a1958d1511cfe8a8892181edfd8 Mon Sep 17 00:00:00 2001 From: jayvirsinh_gohil Date: Thu, 9 Dec 2021 12:30:29 +0530 Subject: [PATCH] drop unique constraint from customers --- ...8_drop_unique_email_on_customers_table.php | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 database/migrations/2021_12_09_065718_drop_unique_email_on_customers_table.php diff --git a/database/migrations/2021_12_09_065718_drop_unique_email_on_customers_table.php b/database/migrations/2021_12_09_065718_drop_unique_email_on_customers_table.php new file mode 100644 index 00000000..4227509d --- /dev/null +++ b/database/migrations/2021_12_09_065718_drop_unique_email_on_customers_table.php @@ -0,0 +1,30 @@ +dropUnique(['email']); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } +}