ErrorException 数组到迁移时的字符串转换 --seed
ErrorException array to string conversion on migrate --seed
我正在尝试设置我的第一个 laravel 项目,但是当我尝试让 artisan 使用 faker 为数据库播种时,它抛出
[errorException] array to string conversion
我正在处理库存用户迁移文件
并使用命令 php artisan migrate --seed
任何指导将不胜感激
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateUsersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('email')->unique();
$table->string('password', 60);
$table->string('role', array('user', 'admin', 'superuser'));
$table->rememberToken();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('users');
}
}
和 artisan 为我生成的这个 UserTableSeeder
use Illuminate\Database\Seeder;
class UserTableSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
factory(App\User::class, 49)->create();
factory(App\User::class)->create([
'name' => 'admin',
'role' => 'admin',
]);
}
}
这是我的Modelfactory.php
$factory->define(App\User::class, function ($faker) {
return [
'name' => $faker->name,
'email' => $faker->email,
'password' => str_random(10),
'remember_token' => str_random(10),
'role' => $faker->word->randomElement(array('user','superuser')),
];
});
$table->string('role', array('user', 'admin', 'superuser'));
您正在选择一种字符串类型,然后提供一个数组。
这正是您的错误所指的内容。
你的错误是因为这一行
$table->string('role', array('user', 'admin', 'superuser'));
将字符串更改为枚举;例如:
$table->enum('role', array('user', 'admin', 'superuser'));
这将执行。
你说的是字符串,但在这一行提供了一个数组:
$table->string('role', array('user', 'admin', 'superuser'));
你应该使用:
$table->enum('role', ['user', 'admin', 'superuser']);
参考请看这里:
我正在尝试设置我的第一个 laravel 项目,但是当我尝试让 artisan 使用 faker 为数据库播种时,它抛出
[errorException] array to string conversion
我正在处理库存用户迁移文件 并使用命令 php artisan migrate --seed
任何指导将不胜感激
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateUsersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('email')->unique();
$table->string('password', 60);
$table->string('role', array('user', 'admin', 'superuser'));
$table->rememberToken();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('users');
}
}
和 artisan 为我生成的这个 UserTableSeeder
use Illuminate\Database\Seeder;
class UserTableSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
factory(App\User::class, 49)->create();
factory(App\User::class)->create([
'name' => 'admin',
'role' => 'admin',
]);
}
}
这是我的Modelfactory.php
$factory->define(App\User::class, function ($faker) {
return [
'name' => $faker->name,
'email' => $faker->email,
'password' => str_random(10),
'remember_token' => str_random(10),
'role' => $faker->word->randomElement(array('user','superuser')),
];
});
$table->string('role', array('user', 'admin', 'superuser'));
您正在选择一种字符串类型,然后提供一个数组。
这正是您的错误所指的内容。
你的错误是因为这一行
$table->string('role', array('user', 'admin', 'superuser'));
将字符串更改为枚举;例如:
$table->enum('role', array('user', 'admin', 'superuser'));
这将执行。
你说的是字符串,但在这一行提供了一个数组:
$table->string('role', array('user', 'admin', 'superuser'));
你应该使用:
$table->enum('role', ['user', 'admin', 'superuser']);
参考请看这里: