我刚刚开始使用Laravel,我得到了以下错误:
插入未知列“updated_at”到gebruikers (naam, wachtwoord) updated_at created_at)
我知道错误来自时间戳列,当你迁移一个表,但我没有使用updated_at字段。当我遵循Laravel教程时,我曾经使用它,但现在我正在制作(或试图制作)我自己的东西。即使我没有使用时间戳,我也会得到这个错误。我似乎找不到它被使用的地方。这是代码:
控制器
public function created()
{
if (!User::isValidRegister(Input::all())) {
return Redirect::back()->withInput()->withErrors(User::$errors);
}
// Register the new user or whatever.
$user = new User;
$user->naam = Input::get('naam');
$user->wachtwoord = Hash::make(Input::get('password'));
$user->save();
return Redirect::to('/users');
}
路线
Route::get('created', 'UserController@created');
模型
public static $rules_register = [
'naam' => 'unique:gebruikers,naam'
];
public static $errors;
protected $table = 'gebruikers';
public static function isValidRegister($data)
{
$validation = Validator::make($data, static::$rules_register);
if ($validation->passes()) {
return true;
}
static::$errors = $validation->messages();
return false;
}
我一定是忘记了什么……我哪里做错了?