added new migrations and models

This commit is contained in:
Jagad R R
2024-12-11 12:29:37 +07:00
parent 0168f5b32f
commit fc5372a181
21 changed files with 436 additions and 7 deletions
@@ -20,8 +20,10 @@ class CreateUsersTable extends Migration
$table->string('username')->unique();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->string('phone');
$table->rememberToken();
$table->timestamps();
$table->softDeletes();
});
}