Add status filter

This commit is contained in:
2023-12-01 00:37:30 +05:00
parent d641f0ef7a
commit 1b7e965db1
3 changed files with 53 additions and 0 deletions

View File

@@ -15,9 +15,11 @@ return new class extends Migration
$table->id();
$table->string('name');
$table->string('email')->unique();
$table->string('phone')->nullable()->unique();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->string('locale')->default('tk');
$table->boolean('active')->default(true);
$table->rememberToken();
$table->timestamps();
});