Skip to content

Commit 1883071

Browse files
committed
fix migration
1 parent 87b4bf3 commit 1883071

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/migrations/2014_10_12_000000_create_users_table.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public function up()
2020
$table->timestamp('email_verified_at')->nullable();
2121
$table->string('password');
2222
$table->rememberToken();
23-
$table->string('current_team_id')->nullable();
23+
$table->foreignId('current_team_id')->nullable();
2424
$table->text('profile_photo_path')->nullable();
2525
$table->timestamps();
2626
});

0 commit comments

Comments
 (0)