I created a migration with post_id unsigned. How can I edit post_id in a new migration to also make it nullable()
?
Schema::create('throttle', function(Blueprint $table)
{
$table->increments('id');
$table->integer('post_id')->unsigned(); // this needs to also be nullable, how should the next migration be?
}