diff --git a/database/migrations/2025_12_01_232808_add_must_change_password_to_users_table.php b/database/migrations/2025_12_01_232808_add_must_change_password_to_users_table.php new file mode 100644 index 0000000..e6f1b65 --- /dev/null +++ b/database/migrations/2025_12_01_232808_add_must_change_password_to_users_table.php @@ -0,0 +1,28 @@ +boolean('must_change_password')->default(false)->after('password'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('users', function (Blueprint $table) { + $table->dropColumn('must_change_password'); + }); + } +};