如何在laravel中存储几个月的日期?

时间:2017-11-29 07:56:21

标签: laravel-5

SQLSTATE [23000]:完整性约束违规:1048列'customer_id'不能为空(SQL:插入invoicesinvoice_nosupplier_idcustomer_id,{ {1}},payment_idissue_datedue_datetotalgst_typegstgrandtotal,{{1 },amt_owed)值(XCZ-INV,1,1 ,,,,,,, 2017-11-29 18:44:19,2017-11-29 18:44:19))

1 个答案:

答案 0 :(得分:0)

您不会将任何costumer_id发送到您的数据库。但是在您的数据库中,您说costumer_id不能为null。您需要将其更改为" NULL"

使用它,它应该有用;

UPDATE invoices SET costumer_id = NULL