File: /var/www/html/laravel/database/migrations/2025_06_20_142722_sigwx_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::create('sigwx', function (Blueprint $table) {
$table->id();
$table->timestamps();
$table->text('content');
$table->integer('page_number');
$table->string('file_name');
$table->text('response')->nullable();
$table->tinyInteger('is_processed')->default(0);
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
//
}
};