Setup Roles And Permissions
打赏作者

太原微聚科技有限公司

是使用的 zizaco/entrust 这个包么?@JellyBool

JellyBool

并不是 @太原微聚科技有限公司

liudong0763 回复 JellyBool

看老师编程非常快,强烈要求老师开一个讲讲如何快速编写代码的视频

JellyBool 回复 liudong0763

这个真心是敲多了就好,没啥捷径。

liudong0763 回复 JellyBool

总有些快捷键啊,小技巧啊什么的

JellyBool 回复 liudong0763

好吧,这个都是自己记得。

824286145
☁  laravel-acl  php artisan migrate
Migration table created successfully.


  [Illuminate\Database\QueryException]
  SQLSTATE[HY000]: General error: 1215 Cannot add foreign key constra
  int (SQL: alter table `posts` add constraint posts_user_id_foreign
  foreign key (`user_id`) references `user` (`id`) on delete cascade)



  [PDOException]
  SQLSTATE[HY000]: General error: 1215 Cannot add foreign key constra
  int
824286145
public function up()
    {
        Schema::create('roles', function (Blueprint $table) {
            $table->increments('id');
            $table->string('name');
            $table->string('label')->nullable();
            $table->timestamps();
        });

        Schema::create('permissions', function (Blueprint $table) {
            $table->increments('id');
            $table->string('name');
            $table->string('label')->nullable();
            $table->timestamps();
        });

        Schema::create('permission_role', function (Blueprint $table) {
            $table->integer('permission_id')->unsigned();
            $table->integer('role_id')->unsigned();

            $table->foreign('permission_id')
                ->references('id')
                ->on('permissions')
                ->onDelete('cascade');
            $table->foreign('role_id')
                ->references('id')
                ->on('roles')
                ->onDelete('cascade');
            $table->primary(['premission_id','role_id']);
        });

        Schema::create('role_user', function (Blueprint $table) {
            $table->integer('user_id')->unsigned();
            $table->integer('role_id')->unsigned();

            $table->foreign('user_id')
                ->references('id')
                ->on('users')
                ->onDelete('cascade');
            $table->foreign('role_id')
                ->references('id')
                ->on('roles')
                ->onDelete('cascade');
            $table->primary(['user_id','role_id']);

        });
    }

JellyBool 回复 824286145

你看一下这个 posts 表,确定没把 users 写成 user

Flourishing

都是言简意赅的讲解 但是对于小白来说 可能理解起来不是那么好理解

rabZhang

有个地方讲错了 估计是口误,新人听得一愣一愣的。
table->primary('id'); 添加主键索引 table->primary([‘first’, ‘last’]); 添加混合索引
一个表里只能一个主键。