|
|
|
@ -14,7 +14,7 @@ return new class extends Migration
|
|
|
|
$table->string('slug', 50)->unique();
|
|
|
|
$table->string('slug', 50)->unique();
|
|
|
|
$table->string('name', 100);
|
|
|
|
$table->string('name', 100);
|
|
|
|
$table->boolean('is_system')->default(false);
|
|
|
|
$table->boolean('is_system')->default(false);
|
|
|
|
$table->boolean('full_access')->default(false)->after('is_system');
|
|
|
|
$table->boolean('full_access')->default(false);
|
|
|
|
$table->unsignedInteger('sort')->default(0);
|
|
|
|
$table->unsignedInteger('sort')->default(0);
|
|
|
|
$table->timestamps();
|
|
|
|
$table->timestamps();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|