create feat management role menu

This commit is contained in:
arifal
2025-02-11 17:59:03 +07:00
parent cb90f69d1e
commit 2bf4b8b327
13 changed files with 296 additions and 51 deletions

View File

@@ -0,0 +1,31 @@
<?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
{
Schema::table('role_menu', function (Blueprint $table) {
$table->boolean('allow_show')->default(true)->after('menu_id');
$table->boolean('allow_create')->default(true)->after('allow_show');
$table->boolean('allow_update')->default(true)->after('allow_create');
$table->boolean('allow_destroy')->default(true)->after('allow_update');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('role_menu', function (Blueprint $table) {
$table->dropColumn(['allow_show','allow_create', 'allow_update', 'allow_destroy']);
});
}
};