Feat: add Ids and phone nos.

This commit is contained in:
Sallu9007
2025-03-23 16:46:04 +05:30
parent 2e5f02fdea
commit b572fd8bf2
3 changed files with 13 additions and 0 deletions

View File

@@ -17,6 +17,10 @@ return new class extends Migration
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->string('orcid_id', 19)->unique()->nullable(); // ORCID iD
$table->string('scopus_id', 20)->unique()->nullable(); // Scopus ID
$table->string('mobile_no', 15)->nullable(); // Mobile Number
$table->string('extension', 10)->nullable(); // Extension (Tel)
$table->rememberToken();
$table->timestamps();
});