| 123456789101112131415161718192021222324252627 |
- <?php
- use Illuminate\Database\Migrations\Migration;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Support\Facades\Schema;
- return new class extends Migration
- {
- public function up(): void
- {
- Schema::create('roles', function (Blueprint $table) {
- $table->id();
- $table->string('slug')->unique();
- $table->string('name');
- $table->text('description')->nullable();
- $table->boolean('is_system')->default(false);
- $table->boolean('is_active')->default(true);
- $table->unsignedInteger('sort')->default(100);
- $table->timestamps();
- });
- }
- public function down(): void
- {
- Schema::dropIfExists('roles');
- }
- };
|