removed foreign key item characteristic in sticker mapping master
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 14s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 13s
Gemini PR Review / Gemini PR Review (pull_request) Failing after 19s
Laravel Pint / pint (pull_request) Failing after 35s
Laravel Larastan / larastan (pull_request) Failing after 47s

This commit is contained in:
dhanabalan
2026-09-21 18:04:49 +05:30
parent 4f0b2c850c
commit b082982f4a

View File

@@ -0,0 +1,36 @@
<?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
{
// Drop foreign key constraint
DB::statement('
ALTER TABLE sticker_mapping_masters
DROP CONSTRAINT IF EXISTS sticker_mapping_masters_item_characteristic_id_fkey
');
// Drop column
DB::statement('
ALTER TABLE sticker_mapping_masters
DROP COLUMN IF EXISTS item_characteristic_id
');
}
/**
* Reverse the migrations.
*/
public function down(): void
{
// Schema::table('sticker_mapping_masters', function (Blueprint $table) {
// //
// });
}
};