diff --git a/database/migrations/2022_06_28_234539_add_username_index_to_users.php b/database/migrations/2022_06_28_234539_add_username_index_to_users.php new file mode 100644 index 0000000000..3303713319 --- /dev/null +++ b/database/migrations/2022_06_28_234539_add_username_index_to_users.php @@ -0,0 +1,32 @@ +index(['username', 'deleted_at']); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('users', function (Blueprint $table) { + $table->dropIndex(['username','deleted_at']); + }); + } +}