File: /var/www/limestate-admin/database/migrations/2024_03_12_110000_add_soft_delete.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::table('complexes', function (Blueprint $table) {
$table->softDeletes();
});
Schema::table('buildings', function (Blueprint $table) {
$table->softDeletes();
});
Schema::table('flats', function (Blueprint $table) {
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('complexes', function (Blueprint $table) {
$table->dropSoftDeletes();
});
Schema::table('buildings', function (Blueprint $table) {
$table->dropSoftDeletes();
});
Schema::table('flats', function (Blueprint $table) {
$table->dropSoftDeletes();
});
}
};