Update user registration email format, remove unused SMS helper function, and adjust database migration for user meta column

This commit is contained in:
2025-09-22 16:50:01 +05:00
parent f14defeebd
commit baf23d4124
12 changed files with 264 additions and 30 deletions

View File

@@ -13,7 +13,7 @@ return new class extends Migration
{
Schema::table('users', function (Blueprint $table) {
$table->softDeletes()->after('updated_at');
$table->json('meta')->nullable()->after('remember_token');
$table->json('meta')->nullable()->after('phone_number');
});
}