/**
  * Run the migrations.
  *
  * @return void
  */
 public function up()
 {
     Schema::create(config('guardian.table.permission'), function (Blueprint $table) {
         $table->increments('id');
         $table->string('name')->unique();
         $table->string('table');
         $table->string('foreign_id_column');
         $table->string('user_id_column');
         $table->timestamps();
     });
     Schema::create(config('guardian.table.role'), function (Blueprint $table) {
         $table->increments('id');
         $table->string('name');
         $table->boolean('locked')->default(false);
         if (Guardian::hasClients()) {
             $table->integer(Guardian::getClientColumn())->unsigned();
         }
         $table->timestamps();
         if (Guardian::hasClients()) {
             $table->foreign(Guardian::getClientColumn())->references(Guardian::getClientKey())->on(Guardian::getClientTable())->onDelete('cascade');
         }
     });
     Schema::create(config('guardian.table.role') . '_' . config('guardian.table.permission'), function (Blueprint $table) {
         $table->integer('permission_id')->unsigned();
         $table->integer('role_id')->unsigned();
         $table->timestamps();
         $table->foreign('permission_id')->references('id')->on(config('guardian.table.permission'))->onDelete('cascade');
         $table->foreign('role_id')->references('id')->on(config('guardian.table.role'))->onDelete('cascade');
     });
     Schema::create(Guardian::getUserTable() . '_' . config('guardian.table.role'), function (Blueprint $table) {
         $table->integer('user_id')->unsigned();
         $table->integer('role_id')->unsigned();
         $table->timestamps();
         $table->foreign('user_id')->references(Guardian::getUserKey())->on(Guardian::getUserTable())->onDelete('cascade');
         $table->foreign('role_id')->references('id')->on(config('guardian.table.role'))->onDelete('cascade');
     });
 }
예제 #2
0
파일: Role.php 프로젝트: emilmoe/guardian
 /**
  * Remove permission from role.
  *
  * If user doesn't have same client id or role is locked,
  * the action will be prevented.
  *
  * @param string $permission
  */
 public function removePermission($permission)
 {
     if ($this->locked == true) {
         return;
     }
     if (Guardian::hasClients()) {
         if (Guardian::getClientId() != $this->{Guardian::getClientColumn()}) {
             return;
         }
     }
     $id = Permission::where('name', $permission)->first()->id;
     $this->permissions()->detach($id);
 }