preparations done

This commit is contained in:
2025-06-05 10:53:57 +05:45
parent b3e543863a
commit 18e5f8f173
11 changed files with 253 additions and 31 deletions

View File

@ -0,0 +1,27 @@
<?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()
{
Schema::table('preparations', function (Blueprint $table) {
$table->text('content')->change(); // or longText
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
//
}
};