create supervisor cartable

This commit is contained in:
2025-04-22 13:48:04 +03:30
parent 1da6414256
commit d6d9009649
4 changed files with 78 additions and 2 deletions

View File

@@ -0,0 +1,30 @@
<?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('safety_and_privacy', function (Blueprint $table) {
$table->boolean('is_finished')->nullable();
$table->integer('status')->nullable();
$table->string('final_description')->nullable();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('safety_and_privacy', function (Blueprint $table) {
$table->dropColumn(['status', 'final_description', 'is_finished']);
});
}
};