gpt4 book ai didi

php - 未找到列 : unknown column

转载 作者:行者123 更新时间:2023-11-29 21:02:04 26 4
gpt4 key购买 nike

我正在尝试将信息插入数据库。我有错误

column not found: Unknown column 'updated_at' in 'field list'

我的数据库中没有该列。

型号

<?php

namespace App;

class quiz extends Basemodel {

protected $primaryKey = 'qid';
protected $table = 'quiz';
protected $fillable = array('question', 'opt1', 'opt2','opt3','opt4','answer','category', 'level');

}

Controller

public function store(Request $request)
{
$input =$request->all();
$q=new quiz();
$q->question=$input['question'];
$q->answer=$input['answer'];
$q->opt1=$input['opt1'];
$q->opt2=$input['opt2'];
$q->opt3=$input['opt3'];
$q->save();

}

最佳答案

在模型中设置public $timestamp = false;

关于php - 未找到列 : unknown column,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37131607/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com