Skip to content

Commit

Permalink
Fix migration data type
Browse files Browse the repository at this point in the history
  • Loading branch information
michavie committed Apr 17, 2020
1 parent 58dd9df commit 577534c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public function up()
$table->increments('id');
$table->unsignedBigInteger('following_id')->index();
$table->unsignedBigInteger('follower_id')->index();
$table->boolean('accepted_at')->nullable()->index();
$table->timestamp('accepted_at')->nullable()->index();
$table->timestamps();
});
}
Expand Down

0 comments on commit 577534c

Please sign in to comment.