お世話になっております。
今、LaravelのSeederでデータ入力を行いたいのですが、
英数文字以外入力できない状態になってしまっております。
お分かりの方居られましたら、ご教示下さい。
試したこと
Mysqlのmy.iniファイルの変更を行い日本語設定実施。
mysqldやclientなどをutf8mb4に切り替えている。
実際にMysqlに直接insert文で日本語を入力できることは確認済み。
mysql>status
(省略)
Server characterset: utf8mb4
Db characterset: utf8mb4
Client characterset: cp932⇒うまく変わらない
Conn. characterset: cp932⇒うまく変わらない
エラー内容
C:\Users\k45152001h3\TEST1>php artisan db:seed [33mSeeding:[39m updatepassSeeder [41;1m Illuminate\Database\QueryException [49;22m : [33mSQLSTATE[42S02]: Base table or view not found: 1146 Table 'customers.updatepassword' doesn't exist (SQL: insert into `updatepassword` (`password`) values (12345))[39m at [32mC:\Users\k45152001h3\TEST1\vendor\laravel\framework\src\Illuminate\Database\Connection.php[39m:[32m665[39m 661| // If an exception occurs when attempting to run a query, we'll format the error 662| // message to include the bindings with SQL, which will make this exception a 663| // lot more helpful to the developer instead of just the database's errors. 664| catch (Exception $e) { > 665| throw new QueryException( 666| $query, $this->prepareBindings($bindings), $e 667| ); 668| } 669| [33mException trace:[39m [36m1 [39m[33mPDOException::("SQLSTATE[42S02]: Base table or view not found: 1146 Table 'customers.updatepassword' doesn't exist")[39m [32mC:\Users\k45152001h3\TEST1\vendor\laravel\framework\src\Illuminate\Database\Connection.php[39m:[32m453[39m [36m2 [39m[33mPDO::prepare("insert into `updatepassword` (`password`) values (?)")[39m [32mC:\Users\k45152001h3\TEST1\vendor\laravel\framework\src\Illuminate\Database\Connection.php[39m:[32m453[39m [32mPlease use the argument [39m[31m-v[39m[32m to see more details.[39m