Files
tbbank-new/app/Modules/UserAdjustments/changes.md
2025-10-22 20:08:22 +05:00

352 B

1.0.0

Add below fields to users table

string('username')->unique();
string('first_name')->nullable();
string('last_name')->nullable();

integer('phone')->nullable()->unique();
dateTime('phone_verified_at')->nullable();

string('locale')->default('tk');

boolean('password_must_be_changed')->default(false);

json('options')->nullable()