toby/database/migrations/2022_04_08_090405_create_profiles_table.php
Adrian Hopek 6506855bba #90 - wip
2022-04-13 09:19:42 +02:00

29 lines
815 B
PHP

<?php
declare(strict_types=1);
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
use Toby\Eloquent\Models\User;
return new class() extends Migration {
public function up(): void
{
Schema::create("profiles", function (Blueprint $table): void {
$table->foreignIdFor(User::class)->primary();
$table->string("first_name")->nullable();
$table->string("last_name")->nullable();
$table->string("position")->nullable();
$table->string("employment_form")->nullable();
$table->date("employment_date")->nullable();
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists("profiles");
}
};