diff --git a/database/migrations/2026_01_14_191641_make_password_nullable_in_users_table.php b/database/migrations/2026_01_14_191641_make_password_nullable_in_users_table.php new file mode 100644 index 0000000..74eb706 --- /dev/null +++ b/database/migrations/2026_01_14_191641_make_password_nullable_in_users_table.php @@ -0,0 +1,29 @@ +string('password')->nullable()->change(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('users', function (Blueprint $table) { + $table->string('password')->nullable(false)->change(); + }); + } +};