File: /home/xedaptot/be.naniguide.com/database/migrations/2025_09_09_082949_cleaup_templates_cols.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('templates', function (Blueprint $table) {
$table->dropForeign(['customer_id']);
$table->dropColumn('customer_id');
$table->dropColumn('is_private');
$table->dropColumn('builder');
$table->dropColumn('builder_v2');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('templates', function (Blueprint $table) {
//
});
}
};