This commit is contained in:
f4ilji
2024-12-06 22:51:01 +05:00
parent f51033330d
commit 290aa841d3
@@ -0,0 +1,22 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::table('pages', function (Blueprint $table) {
$table->longText('search_data')->change();
});
}
public function down(): void
{
Schema::table('pages', function (Blueprint $table) {
$table->text('search_data')->change();
});
}
};