From 95ae0234c82a64fb9feccbd3eb373ffff30d76fb Mon Sep 17 00:00:00 2001 From: kent Date: Mon, 1 Dec 2025 23:44:45 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EC=82=AC=EC=9A=A9=EC=9E=90=20must=5Fch?= =?UTF-8?q?ange=5Fpassword=20=EC=BB=AC=EB=9F=BC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - users 테이블에 must_change_password 컬럼 추가 (boolean, default: false) - 신규 사용자 생성/비밀번호 초기화 시 강제 비밀번호 변경 기능 지원 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- ...dd_must_change_password_to_users_table.php | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 database/migrations/2025_12_01_232808_add_must_change_password_to_users_table.php 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'); + }); + } +};