ranjith-dev #940

Merged
jothi merged 6 commits from ranjith-dev into master 2026-08-26 06:45:37 +00:00
Showing only changes of commit c5727c78c1 - Show all commits

View File

@@ -0,0 +1,31 @@
<?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
{
$sql1 = <<<'SQL'
ALTER TABLE panel_box_validations
DROP CONSTRAINT panel_box_validations_plant_id_serial_number_key
SQL;
DB::statement($sql1);
}
/**
* Reverse the migrations.
*/
public function down(): void
{
// Schema::table('panel_box_validations', function (Blueprint $table) {
// //
// });
}
};