permessions added to user
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
$tableNames = config('permission.table_names');
|
||||
|
||||
Schema::table($tableNames['permissions'], function (Blueprint $table) {
|
||||
$table->jsonb('display_name')->nullable();
|
||||
});
|
||||
|
||||
Schema::table($tableNames['roles'], function (Blueprint $table) {
|
||||
$table->jsonb('display_name')->nullable();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
$tableNames = config('permission.table_names');
|
||||
|
||||
Schema::table($tableNames['permissions'], function (Blueprint $table) {
|
||||
$table->dropColumn('display_name');
|
||||
});
|
||||
|
||||
Schema::table($tableNames['roles'], function (Blueprint $table) {
|
||||
$table->dropColumn('display_name');
|
||||
});
|
||||
}
|
||||
};
|
||||
@@ -28,7 +28,6 @@ class UsersTableSeeder extends Seeder
|
||||
'superadmin',
|
||||
'admin',
|
||||
'operator',
|
||||
'user',
|
||||
])->each(fn ($role) => Role::create(['name' => $role]));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user