#27 - separate fields for name and surname

This commit is contained in:
Adrian Hopek
2022-01-24 12:06:36 +01:00
parent e147d24365
commit 816af23ce4
17 changed files with 125 additions and 48 deletions

View File

@@ -11,7 +11,8 @@ return new class() extends Migration {
{
Schema::create("users", function (Blueprint $table): void {
$table->id();
$table->string("name");
$table->string("first_name");
$table->string("last_name");
$table->string("email")->unique();
$table->string("avatar")->nullable();
$table->string("employment_form");