douting0585 2018-02-04 11:40
浏览 435
已采纳

默认情况下,Laravel迁移使我的所有表列都不为空。 如何允许某些列为空? [关闭]

I wanna be able to upload an image without having to give it description but to still be able to if you wanted.Currently my migrations are making all my columns not null which is creating this problem for me.

  • 写回答

1条回答 默认 最新

  • douwen3198 2018-02-04 11:42
    关注

    use nullable() on migrations :

    $table->string('description')->nullable();
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?