File: /var/www/html/laravel/database/migrations/2025_07_14_142722_mels_update_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::table('mels', function (Blueprint $table) {
$table->text('content');
$table->text('response')->nullable();
$table->integer('page_number');
$table->text('file_name');
$table->dropColumn('input');
$table->dropColumn('output');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
//
}
};