Просмотр файла database/upgrades/2025_07_03_125839_change_text_in_notes.php
<?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('notes', function (Blueprint $table) {
$table->text('text')->nullable()->change();
});
}
public function down(): void
{
Schema::table('notes', function (Blueprint $table) {
$table->text('text')->nullable(false)->change();
});
}
};