前提・実現したいこと
マイグレーションで作成したテーブルにシーティングでデータを挿入したいのですが、テーブルに反映されません。
ターミナルで
php artisan db:seed;入力すると
Database seeding completed successfully.
としっかり返ってきます。
解決方法を探しています。
該当のソースコード
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; use Illuminate\Support\Facades\DB; class ContactsTableSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { $param=[ "fullname"=>"a", "gender"=>1, "email"=>"test@gmai.com", "postcode"=>"000-0000", "address"=>"札幌", "opinion"=>"テスト", ]; } }
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; class DatabaseSeeder extends Seeder { /** * Seed the application's database. * * @return void */ public function run() { $this->call(ContactsTableSeeder::class); } }
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateContactsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('contacts', function (Blueprint $table) { $table->id(); $table->string("fullname")->nullable(); $table->tinyInteger("gender")->nullable(); $table->string("email"); $table->char("postcode","8")->nullable(); $table->string("address")->nullable(); $table->string("building_name"); $table->text("opinion")->nullable(); $table->timestamp("created_at")->useCurrent()->nullable(); $table->timestamp("updated_at")->useCurrent()->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('contacts'); } }
試したこと
php artisan db:seed --class=DatabaseSeederやphp artisan db:seed --class=contactsTableSeederを実行しすべてDatabase seeding completed successfully.と返ってきますがテーブルに反映されません。
初歩的な部分なのかもしれませんが、解決方法教えていただきたいです。
宜しくお願い致します。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
データを登録しているコードが見当たらないですが、ContactsTableSeederクラスの記述は、これで全てですか?
もしそうなら、一度リファレンスを読み直すのが良いかと思います。
https://readouble.com/laravel/8.x/ja/seeding.html
あなたの回答
tips
プレビュー