最佳答案
我正在学习 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 填充数据,作为迁移的一部分。
有人知道怎么做吗?