私はLaravelを学習しているだけで、usersテーブルを作成する移行ファイルが機能しています。移行の一部としてユーザーレコードを入力しようとしています。
public function up()
{
Schema::create('users', function($table){
$table->increments('id');
$table->string('email', 255);
$table->string('password', 64);
$table->boolean('verified');
$table->string('token', 255);
$table->timestamps();
DB::table('users')->insert(
array(
'email' => 'name@domain.com',
'verified' => true
)
);
});
}
しかし、実行すると次のエラーが発生しますphp artisan migrate
。
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'vantage.users' doesn't exist
これは明らかにArtisanがまだテーブルを作成していないためですが、すべてのドキュメントには、移行の一部としてFluent Queryを使用してデータを入力する方法があると記載されているようです。
誰か知ってる?ありがとう!