在 Laravel 迁移文件中填充数据库
2022-08-30 06:40:57
我刚刚学习Laravel,并有一个工作迁移文件创建一个用户表。我正在尝试填充用户记录作为迁移的一部分:
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.example`,
'verified' => true
)
);
});
}
但是我在运行时收到以下错误:php artisan migrate
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'vantage.users' doesn't exist
这显然是因为 Artisan 尚未创建该表,但所有文档似乎都说有一种方法可以使用 Fluent Query 在迁移过程中填充数据。
有人知道怎么做吗?