gpt4 book ai didi

php - 在 Laravel 迁移文件中填充数据库

转载 作者:IT老高 更新时间:2023-10-28 11:53:39 24 4
gpt4 key购买 nike

我刚刚学习 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 来填充数据作为迁移的一部分。

有人知道怎么做吗?

最佳答案

不要将 DB::insert() 放在 Schema::create() 中,因为 create 方法必须先完成表的创建,然后才能插入内容。试试这个:

public function up()
{
// Create the table
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();
});

// Insert some stuff
DB::table('users')->insert(
array(
'email' => 'name@domain.example',
'verified' => true
)
);
}

关于php - 在 Laravel 迁移文件中填充数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12736120/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com