Add files migration

This commit is contained in:
2026-06-26 17:48:51 +02:00
parent 8e83110093
commit cac8b03a0d
4 changed files with 205 additions and 2 deletions

View File

@@ -0,0 +1,32 @@
<?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('migration_files', function (Blueprint $table) {
$table->id();
$table->string('filename');
$table->string('old_path');
$table->unsignedBigInteger('wp_post_id');
$table->uuid('uuid');
$table->string('new_path');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('migration_files');
}
};