Skip to content

Commit

Permalink
Fixed Migration reference
Browse files Browse the repository at this point in the history
  • Loading branch information
StanBarrows committed Oct 29, 2023
1 parent 19e56c4 commit e4a2c19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/migrations/create_auth_provider_table.php.stub
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ return new class extends Migration
Schema::create('auth_providers', function (Blueprint $table) {
$table->id();

$table->foreignId('user_id')->nullable()->constrained()->onDelete('cascade');
$table->unsignedBigInteger('user_id')->nullable();

$table->string('name')->nullable();
$table->string('email')->nullable();
Expand Down

0 comments on commit e4a2c19

Please sign in to comment.