File: /var/www/ivs.kaunokolegija.lt/laravel/database/migrations/2025_01_05_000005_create_users_table.php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateUsersTable extends Migration
{
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('name')->nullable();
$table->string('email')->nullable()->unique();
$table->string('phone')->nullable();
$table->datetime('email_verified_at')->nullable();
$table->string('password')->nullable();
$table->string('remember_token')->nullable();
$table->timestamps();
$table->softDeletes();
});
}
}