我正在尝试在Laravel中创建新记录,但它引发了奇怪的错误。
它说ID为“ 4294967295”的重复条目,但是如您所见,insert查询没有任何类似内容。它正在变得完全不同。
以下是我得到的错误;
SQLSTATE [23000]:违反完整性约束:1062键'charges_charge_id_unique'的重复条目'4294967295'(SQL:插入
charges
(type
,charge_id
,{{1} },shop_id
,status
,name
,price
,trial_days
,discount_amount
,plan_id
,test
,terms
,capped_amount
,billing_on
,trial_ends_on
,activated_on
,updated_at
)值(1,4890951734,7,active,Early Birds,499 ,14,0,1,0,,,2018-12-04 00:00:00,2018-12-04 00:00:00,2018-11-26 00:00:00,2018-11-26 16 :45:37,2018-11-26 16:45:37))
我该如何解决?