관리-도구
편집 파일: 2023_06_21_165828_create_plugins_table.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('plugins', function (Blueprint $table) { $table->id(); $table->uuid('uid'); $table->string('name'); $table->string('type'); $table->string('title'); $table->string('description'); $table->string('version'); $table->string('status'); $table->longText('data')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('plugins'); } };