mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-30 21:21:09 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			115 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			115 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| use Illuminate\Database\Migrations\Migration;
 | |
| 
 | |
| use Illuminate\Database\Schema\Blueprint;
 | |
| use Illuminate\Support\Facades\Schema;
 | |
| use Silber\Bouncer\Database\Models;
 | |
| 
 | |
| class CreateBouncerTables extends Migration
 | |
| {
 | |
|     /**
 | |
|      * Run the migrations.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function up()
 | |
|     {
 | |
|         if (Schema::hasTable('role_has_permissions')) {
 | |
|             Schema::drop('role_has_permissions');
 | |
|         }
 | |
| 
 | |
|         if (Schema::hasTable('model_has_roles')) {
 | |
|             Schema::drop('model_has_roles');
 | |
|         }
 | |
| 
 | |
|         if (Schema::hasTable('model_has_permissions')) {
 | |
|             Schema::drop('model_has_permissions');
 | |
|         }
 | |
| 
 | |
|         if (Schema::hasTable('permissions')) {
 | |
|             Schema::drop('permissions');
 | |
|         }
 | |
| 
 | |
|         if (Schema::hasTable('roles')) {
 | |
|             Schema::drop('roles');
 | |
|         }
 | |
| 
 | |
|         Schema::create(Models::table('abilities'), function (Blueprint $table) {
 | |
|             $table->bigIncrements('id');
 | |
|             $table->string('name');
 | |
|             $table->string('title')->nullable();
 | |
|             $table->bigInteger('entity_id')->unsigned()->nullable();
 | |
|             $table->string('entity_type')->nullable();
 | |
|             $table->boolean('only_owned')->default(false);
 | |
|             $table->json('options')->nullable();
 | |
|             $table->integer('scope')->nullable()->index();
 | |
|             $table->timestamps();
 | |
|         });
 | |
| 
 | |
|         Schema::create(Models::table('roles'), function (Blueprint $table) {
 | |
|             $table->bigIncrements('id');
 | |
|             $table->string('name');
 | |
|             $table->string('title')->nullable();
 | |
|             $table->integer('level')->unsigned()->nullable();
 | |
|             $table->integer('scope')->nullable()->index();
 | |
|             $table->timestamps();
 | |
| 
 | |
|             $table->unique(
 | |
|                 ['name', 'scope'],
 | |
|                 'roles_name_unique'
 | |
|             );
 | |
|         });
 | |
| 
 | |
|         Schema::create(Models::table('assigned_roles'), function (Blueprint $table) {
 | |
|             $table->bigIncrements('id');
 | |
|             $table->bigInteger('role_id')->unsigned()->index();
 | |
|             $table->bigInteger('entity_id')->unsigned();
 | |
|             $table->string('entity_type');
 | |
|             $table->bigInteger('restricted_to_id')->unsigned()->nullable();
 | |
|             $table->string('restricted_to_type')->nullable();
 | |
|             $table->integer('scope')->nullable()->index();
 | |
| 
 | |
|             $table->index(
 | |
|                 ['entity_id', 'entity_type', 'scope'],
 | |
|                 'assigned_roles_entity_index'
 | |
|             );
 | |
| 
 | |
|             $table->foreign('role_id')
 | |
|                   ->references('id')->on(Models::table('roles'))
 | |
|                   ->onUpdate('cascade')->onDelete('cascade');
 | |
|         });
 | |
| 
 | |
|         Schema::create(Models::table('permissions'), function (Blueprint $table) {
 | |
|             $table->bigIncrements('id');
 | |
|             $table->bigInteger('ability_id')->unsigned()->index();
 | |
|             $table->bigInteger('entity_id')->unsigned()->nullable();
 | |
|             $table->string('entity_type')->nullable();
 | |
|             $table->boolean('forbidden')->default(false);
 | |
|             $table->integer('scope')->nullable()->index();
 | |
| 
 | |
|             $table->index(
 | |
|                 ['entity_id', 'entity_type', 'scope'],
 | |
|                 'permissions_entity_index'
 | |
|             );
 | |
| 
 | |
|             $table->foreign('ability_id')
 | |
|                   ->references('id')->on(Models::table('abilities'))
 | |
|                   ->onUpdate('cascade')->onDelete('cascade');
 | |
|         });
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Reverse the migrations.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function down()
 | |
|     {
 | |
|         Schema::drop(Models::table('permissions'));
 | |
|         Schema::drop(Models::table('assigned_roles'));
 | |
|         Schema::drop(Models::table('roles'));
 | |
|         Schema::drop(Models::table('abilities'));
 | |
|     }
 | |
| }
 |