<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
/**
* Run the migrations.
*/
public function up(): void
{
Schema::rename('attachments', 'attachments_old');
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::rename('attachments_old', 'attachments');
}
};