Merge branch '9.x'

# Conflicts:
#	CHANGELOG.md
This commit is contained in:
Dries Vints
2023-01-10 17:13:01 +01:00
7 changed files with 18 additions and 14 deletions

View File

@@ -12,7 +12,7 @@ return new class extends Migration
public function up(): void
{
Schema::create('password_resets', function (Blueprint $table) {
$table->string('email')->index();
$table->string('email')->primary();
$table->string('token');
$table->timestamp('created_at')->nullable();
});