Skip to content

Commit

Permalink
Remove DB contraints in Discord OAuth (#1732)
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurpar06 authored Dec 23, 2023
1 parent 85120e6 commit c29e94d
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,6 @@ public function up(): void
$table->string('refresh_token');
$table->dateTime('last_refreshed_at')->nullable();
$table->timestamps();

$table->foreign('user_id')
->references('id')
->on('users')
->cascadeOnDelete();
});
}

Expand Down

0 comments on commit c29e94d

Please sign in to comment.