Xboard/database/migrations/2025_01_18_140511_create_plugins_table.php

34 lines
828 B
PHP
Raw Normal View History

2025-01-18 04:12:07 -05:00
<?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('v2_plugins', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('code')->unique();
$table->string('version', 50);
$table->boolean('is_enabled')->default(false);
$table->json('config')->nullable();
$table->timestamp('installed_at')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('v2_plugins');
}
};