cms/database/migrations/2026_03_09_052354_create_permissions_table.php
Funky Waddle 37ed997989 feat(cms): initialize Laravel project structure and core CMS files
- Added standard Laravel directory structure and configuration.

- Included Svelte and Tailwind configuration for the admin interface.

- Added core PHPUnit and testing scripts.
2026-04-13 12:48:06 -05:00

32 lines
853 B
PHP

<?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::create('permissions', function (Blueprint $table) {
$table->id();
$table->string('name'); // e.g., 'View Posts', 'Edit Pages'
$table->string('slug')->unique(); // e.g., 'posts.view', 'pages.edit'
$table->string('resource'); // e.g., 'Page', 'Plugin', 'Theme', 'Blog Post'
$table->string('action'); // e.g., 'view', 'edit', 'delete'
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('permissions');
}
};