使用Laravel 5,我正在制作一个n:n
与User
之间Role
关系的新项目。
当我清空我的数据库并输入命令:php artisan migrate:install
(有效)后跟:php artisan migrate
时,我收到以下错误:
[Illuminate\Database\QueryException]
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'manon.role_user' doesn't exist
(SQL: alter table `role_user` add `user_id` int not null, add `role_id` int not null)
[PDOException]
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'manon.role_user' doesn't exist
我受this教程的启发。
以下是一些简单的代码:
在Role.php中:
public function users()
{
return $this->belongsToMany('User');
}
在User.php中:
public function roles()
{
return $this->belongsToMany('Role');
}
角色迁移:
class CreateRolesTable extends Migration
{
public function up()
{
Schema::create('roles', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
});
}
public function down()
{
Schema::dropIfExists('roles');
}
}
role_user迁移:
class CreateRoleUserTable extends Migration
{
public function up()
{
Schema::table('role_user', function (Blueprint $table) {
$table->integer('user_id');
$table->integer('role_id');
});
}
public function down()
{
Schema::dropIfExists('role_user');
}
}
用户迁移:
class CreateUsersTable extends Migration
{
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('firstName');
$table->string('lastName');
$table->string('email')->unique();
$table->string('password');
$table->rememberToken();
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('users');
}
}
答案 0 :(得分:2)
Schema::table('role_user', function (Blueprint $table) {
应该是
Schema::create('role_user', function (Blueprint $table) {
请注意更改:table
已更改为create
,因为您正在创建此表,而不是更改它,您无法更改不存在的内容:)
迁移也称为CreateRoleUserTable
,因此表示创建不是更改。