Sms verification ok
This commit is contained in:
@@ -13,10 +13,12 @@ return new class extends Migration
|
||||
{
|
||||
Schema::create('users', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('username')->unique();
|
||||
$table->string('name');
|
||||
$table->string('email')->unique();
|
||||
$table->string('email')->nullable()->unique();
|
||||
$table->string('phone')->nullable()->unique();
|
||||
$table->timestamp('email_verified_at')->nullable();
|
||||
$table->timestamp('phone_verified_at')->nullable();
|
||||
$table->string('password');
|
||||
$table->string('locale')->default('tk');
|
||||
$table->boolean('active')->default(true);
|
||||
|
||||
Reference in New Issue
Block a user