前提・実現したいこと
PHPフレームワークLaravel入門という書籍のRESTfulサービスを利用するところ(p290以降)で、テーブルを作成しようとしたところ、下記のようなエラーが発生ました。
ソースコードを全て入力したあと、ターミナルでphp artisan db:seedを実行するとエラーが発生しました。
エラーを解決して、レコードをテーブルに登録したいので、質問をいたします。
発生している問題・エラーメッセージ
machidajunya@mpb laravelapp % php artisan db:seed Seeding: RestdataTableSeeder Illuminate\Database\QueryException SQLSTATE[HY000]: General error: 1 table restdata has no column named message (SQL: in sert into "restdata" ("message", "url") values (Google Japan, https://www.google.co.jp) ) at vendor/laravel/framework/src/Illuminate/Database/Connection.php:670 666| // If an exception occurs when attempting to run a query, we'll format the error 667| // message to include the bindings with SQL, which will make this exce ption a 668| // lot more helpful to the developer instead of just the database's er rors. 669| catch (Exception $e) { > 670| throw new QueryException( 671| $query, $this->prepareBindings($bindings), $e 672| ); 673| } 674| +12 vendor frames 13 database/seeds/RestdataTableSeeder.php:15 Illuminate\Database\Eloquent\Model::save() +8 vendor frames 22 database/seeds/DatabaseSeeder.php:9 Illuminate\Database\Seeder::call("RestdataTableSeeder")
該当のソースコード
PHP
1//2020_04_12_062309_create_restdata_table.php 2//database>migration>2020_04_12_062309_create_restdata_table.php 3 4<?php 5use Illuminate\Support\Facades\Schema; 6use Illuminate\Database\Schema\Blueprint; 7use Illuminate\Database\Migrations\Migration; 8 9class CreateRestdataTable extends Migration 10{ 11 public function up() 12 { 13 Schema::create('restdata', 14 function (Blueprint $table) { 15 $table->increments('id'); 16 $table->string('message'); 17 $table->string('url'); 18 $table->timestamps(); 19 }); 20 } 21 22 public function down() 23 { 24 Schema::dropIfExists('restdata'); 25 } 26} 27 28
PHP
1//Restdata.php 2//app>Restdata.php 3 4<?php 5 6namespace App; 7 8use Illuminate\Database\Eloquent\Model; 9 10class Restdata extends Model 11{ 12 protected $table = 'restdata'; 13 protected $guarded = array('id'); 14 public $timestamps = false; 15 16 public static $rules = array( 17 'message' => 'required', 18 'url' => 'required' 19 ); 20 21 public function getData() 22 { 23 return $this->id . ':' . $this->mssage 24 . '(' . $this->url . ')'; 25 } 26} 27
PHP
1//RestdataTableSeeder.php 2//database>seeds>RestdataTable.php 3 4<?php 5 6use Illuminate\Database\Seeder; 7use App\Restdata; 8 9class RestdataTableSeeder extends Seeder 10{ 11 public function run() 12 { 13 $param = [ 14 'message' => 'Google Japan', 15 'url' => 'https://www.google.co.jp', 16 ]; 17 $restdata = new Restdata; 18 $restdata->fill($param)->save(); 19 $param = [ 20 'message' => 'Yahoo Japan', 21 'url' => 'https://www.yahoo.co.jp', 22 ]; 23 $restdata = new Restdata; 24 $restdata->fill($param)->save(); 25 $param = [ 26 'message' => 'MSN Japan', 27 'url' => 'http://www.msn.com/ja-jp', 28 ]; 29 $restdata = new Restdata; 30 $restdata->fill($param)->save(); 31 } 32} 33
PHP
1//DatabaseSeeder.php 2//database>seeds>DatabaseSeeder.php 3 4<?php 5 6use Illuminate\Database\Seeder; 7 8class DatabaseSeeder extends Seeder 9{ 10 public function run() 11 { 12 $this->call(RestdataTableSeeder::class); 13 } 14}
試したこと
エラー文を検索したところ、Modelクラスにpublic $timestamps = false;の記述を追加しすることで、timestampsを無効にすれば改善されるという記事がありました。
私もModelクラスに記述をしましたが、改善はされませんでした。
試した参考記事はこちらです。
リンク内容
申し訳ありませんがどなたか原因を教えていただけないでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/12 13:03
2020/04/12 13:08 編集
2020/04/12 13:13
2020/04/12 13:19 編集
2020/04/12 13:25
2020/04/12 13:29
2020/04/12 13:35
2020/04/12 13:44
2020/04/12 13:47
2020/04/12 14:19 編集