Skip to content
This repository was archived by the owner on Apr 19, 2025. It is now read-only.

Commit c425e33

Browse files
committed
Change from increments to bigIncrements (unsure if this is adviseable...)
1 parent c662d8f commit c425e33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/database/migrations/2017_05_26_102832_create_two_factor_auths_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public function up()
1515
{
1616
Schema::create('two_factor_auths', function (Blueprint $table) {
1717
$table->string('id')->nullable();
18-
$table->unsignedInteger('user_id');
18+
$table->bigIncrements('user_id');
1919
$table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
2020
$table->timestamps();
2121
});

0 commit comments

Comments
 (0)