This commit is contained in:
Adrian Hopek
2022-01-13 09:08:36 +01:00
parent 197e7da9cc
commit 38af769f7b
17 changed files with 1434 additions and 144 deletions

View File

@@ -12,9 +12,7 @@ return new class() extends Migration {
Schema::create("users", function (Blueprint $table): void {
$table->id();
$table->string("name");
$table->string("avatar")->nullable();
$table->string("email")->unique();
$table->string("google_id")->nullable();
$table->rememberToken();
$table->timestamps();
});