前提・実現したいこと
初心者です
Laravelを使って個人アプリを作成していますが、userを登録しようとすると
エラーが発生してしまいます。
PHP 7.3.11
SQL 5.6.47
発生している問題・エラーメッセージ
Illuminate\Database\QueryException SQLSTATE[HY000]: General error: 1364 Field 'age' doesn't have a default value (SQL: insert into `users` (`name`, `email`, `password`, `role_id`, `updated_at`, `created_at`) values (aaaa, aaaa@aaaa, $2y$10$XsLy8.C7sz5Y0uFMB70pKeGJoz0no.ipt3ARxrK3igABqWW6annJW, 3, 2020-10-17 08:38:51, 2020-10-17 08:38:51))
該当のソースコード
Userphp
1<?php 2 3namespace App; 4 5use Illuminate\Contracts\Auth\MustVerifyEmail; 6use Illuminate\Foundation\Auth\User as Authenticatable; 7use Illuminate\Notifications\Notifiable; 8 9class User extends Authenticatable 10{ 11 use Notifiable; 12 13 /** 14 * The attributes that are mass assignable. 15 * 16 * @var array 17 */ 18 protected $fillable = [ 19 'name', 'email', 'password','role_id','age','e-mail', 20 'image','description' 21 ]; 22 23 /** 24 * The attributes that should be hidden for arrays. 25 * 26 * @var array 27 */ 28 protected $hidden = [ 29 'password', 'remember_token', 30 ]; 31 32 /** 33 * The attributes that should be cast to native types. 34 * 35 * @var array 36 */ 37 protected $casts = [ 38 'email_verified_at' => 'datetime', 39 ]; 40} 41
RegiterController
1<?php 2 3namespace App\Http\Controllers\Auth; 4 5use App\Http\Controllers\Controller; 6use App\Providers\RouteServiceProvider; 7use App\User; 8use App\Role; 9use Illuminate\Foundation\Auth\RegistersUsers; 10use Illuminate\Support\Facades\Hash; 11use Illuminate\Support\Facades\Validator; 12 13class RegisterController extends Controller 14{ 15 /* 16 |-------------------------------------------------------------------------- 17 | Register Controller 18 |-------------------------------------------------------------------------- 19 | 20 | This controller handles the registration of new users as well as their 21 | validation and creation. By default this controller uses a trait to 22 | provide this functionality without requiring any additional code. 23 | 24 */ 25 26 use RegistersUsers; 27 28 /** 29 * Where to redirect users after registration. 30 * 31 * @var string 32 */ 33 protected $redirectTo = RouteServiceProvider::HOME; 34 35 /** 36 * Create a new controller instance. 37 * 38 * @return void 39 */ 40 public function __construct() 41 { 42 $this->middleware('guest'); 43 } 44 45 /** 46 * Get a validator for an incoming registration request. 47 * 48 * @param array $data 49 * @return \Illuminate\Contracts\Validation\Validator 50 */ 51 protected function validator(array $data) 52 { 53 return Validator::make($data, [ 54 'name' => ['required', 'string', 'max:255'], 55 'email' => ['required', 'string', 'email', 'max:255', 'unique:users'], 56 'password' => ['required', 'string', 'min:8', 'confirmed'], 57 ]); 58 } 59 60 /** 61 * Create a new user instance after a valid registration. 62 * 63 * @param array $data 64 * @return \App\User 65 */ 66 protected function create(array $data) 67 { 68 $role= Role::where('name','student')->first(); 69 return User::create([ 70 'name' => $data['name'], 71 'email' => $data['email'], 72 'password' => Hash::make($data['password']), 73 'role_id' => $role->id, 74 'gender' => $data['gender'] 75 ]); 76 } 77} 78 79
試したこと
my.cnfにsql_mode=NO_ENGINE_SUBSTITUTIONを追記してMySQLを再度起動するも
エラー文は変わりませんでした。
補足情報(FW/ツールのバージョンなど)
原因はMySQL5.6からはdefault値がないカラムの情報を追加する場合、カラムの情報を書かない場合は自動で補完されるのではなく、エラーが発生してしまうことまでわかりました。MySQL8.0に変更などしましたがMySQLに接続できなくるなど他にエラーが出まくりで大変だったのでMySQLの更新は断念しました・・・
回答1件
あなたの回答
tips
プレビュー