Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Bluepr..

Decoded Output download

<?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('product_categories', function (Blueprint $table) {
            $table->unique(['product_id', 'category_id']);
        });

        Schema::table('product_relations', function (Blueprint $table) {
            $table->unique(['parent_id', 'child_id']);
        });

        Schema::table('product_cross_sells', function (Blueprint $table) {
            $table->unique(['parent_id', 'child_id']);
        });

        Schema::table('product_up_sells', function (Blueprint $table) {
            $table->unique(['parent_id', 'child_id']);
        });

        Schema::table('product_grouped_products', function (Blueprint $table) {
            $table->unique(['product_id', 'associated_product_id']);
        });

        Schema::table('product_bundle_option_translations', function (Blueprint $table) {
            $table->string('label')->change();
        });

        Schema::table('product_bundle_option_translations', function (Blueprint $table) {
            $table->unique(['locale', 'label', 'product_bundle_option_id'], 'bundle_option_translations_locale_label_bundle_option_id_unique');
        });

        Schema::table('product_bundle_option_products', function (Blueprint $table) {
            $table->unique(['product_id', 'product_bundle_option_id'], 'bundle_option_products_product_id_bundle_option_id_unique');
        });

        Schema::table('product_super_attributes', function (Blueprint $table) {
            $table->unique(['product_id', 'attribute_id']);
        });
    }

    /**
     * Reverse the migrations.
     */
    public function down(): void
    {
        Schema::table('product_categories', function (Blueprint $table) {
            $table->dropUnique(['product_id', 'category_id']);
        });

        Schema::table('product_relations', function (Blueprint $table) {
            $table->dropUnique(['parent_id', 'child_id']);
        });

        Schema::table('product_cross_sells', function (Blueprint $table) {
            $table->dropUnique(['parent_id', 'child_id']);
        });

        Schema::table('product_up_sells', function (Blueprint $table) {
            $table->dropUnique(['parent_id', 'child_id']);
        });

        Schema::table('product_grouped_products', function (Blueprint $table) {
            $table->dropUnique(['product_id', 'associated_product_id']);
        });

        Schema::table('product_bundle_option_translations', function (Blueprint $table) {
            $table->dropUnique(['locale', 'label', 'product_bundle_option_id']);
        });

        Schema::table('product_bundle_option_products', function (Blueprint $table) {
            $table->dropUnique(['product_id', 'product_bundle_option_id']);
        });
    }
};
 ?>

Did this file decode correctly?

Original Code

<?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('product_categories', function (Blueprint $table) {
            $table->unique(['product_id', 'category_id']);
        });

        Schema::table('product_relations', function (Blueprint $table) {
            $table->unique(['parent_id', 'child_id']);
        });

        Schema::table('product_cross_sells', function (Blueprint $table) {
            $table->unique(['parent_id', 'child_id']);
        });

        Schema::table('product_up_sells', function (Blueprint $table) {
            $table->unique(['parent_id', 'child_id']);
        });

        Schema::table('product_grouped_products', function (Blueprint $table) {
            $table->unique(['product_id', 'associated_product_id']);
        });

        Schema::table('product_bundle_option_translations', function (Blueprint $table) {
            $table->string('label')->change();
        });

        Schema::table('product_bundle_option_translations', function (Blueprint $table) {
            $table->unique(['locale', 'label', 'product_bundle_option_id'], 'bundle_option_translations_locale_label_bundle_option_id_unique');
        });

        Schema::table('product_bundle_option_products', function (Blueprint $table) {
            $table->unique(['product_id', 'product_bundle_option_id'], 'bundle_option_products_product_id_bundle_option_id_unique');
        });

        Schema::table('product_super_attributes', function (Blueprint $table) {
            $table->unique(['product_id', 'attribute_id']);
        });
    }

    /**
     * Reverse the migrations.
     */
    public function down(): void
    {
        Schema::table('product_categories', function (Blueprint $table) {
            $table->dropUnique(['product_id', 'category_id']);
        });

        Schema::table('product_relations', function (Blueprint $table) {
            $table->dropUnique(['parent_id', 'child_id']);
        });

        Schema::table('product_cross_sells', function (Blueprint $table) {
            $table->dropUnique(['parent_id', 'child_id']);
        });

        Schema::table('product_up_sells', function (Blueprint $table) {
            $table->dropUnique(['parent_id', 'child_id']);
        });

        Schema::table('product_grouped_products', function (Blueprint $table) {
            $table->dropUnique(['product_id', 'associated_product_id']);
        });

        Schema::table('product_bundle_option_translations', function (Blueprint $table) {
            $table->dropUnique(['locale', 'label', 'product_bundle_option_id']);
        });

        Schema::table('product_bundle_option_products', function (Blueprint $table) {
            $table->dropUnique(['product_id', 'product_bundle_option_id']);
        });
    }
};

Function Calls

None

Variables

None

Stats

MD5 3351ab744940688652c35914e0b4bc73
Eval Count 0
Decode Time 90 ms