sispace/database/migrations/2026_04_02_084211_create_changelogs_table.php

37 lines
974 B
PHP

<?php
use App\Enums\ChangelogType;
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('changelogs', function (Blueprint $table) {
$table->id();
$table->string('version')->unique();
$table->date('release_date');
$table->string('title', 100);
$table->json('changes');
$table->enum('type', ChangelogType::cases());
$table->text('description');
$table->timestamp('created_at')->useCurrent();
$table->timestamp('updated_at')->nullable()->useCurrentOnUpdate();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('changelogs');
}
};