* #27 - separate fields for name and surname * #27 -cr fix
This commit was merged in pull request #29.
This commit is contained in:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user