Я создал миграцию с post_id без знака. Как я могу отредактировать post_id в новой миграции и сделать его 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?
}