This commit is contained in:
Adrian Hopek
2022-01-12 15:28:48 +01:00
parent 2abd83526d
commit 197e7da9cc
22 changed files with 994 additions and 1895 deletions

View File

@@ -12,9 +12,9 @@ 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->timestamp("email_verified_at")->nullable();
$table->string("password");
$table->string("google_id")->nullable();
$table->rememberToken();
$table->timestamps();
});