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.
*
* @return void
*/
public function up()
{
Schema::create('product_customer_group_prices', function (Blueprint $table) {
$table->bigIncrements('id');
$table->integer('qty')->default(0);
$table->string('value_type');
$table->decimal('value', 12, 4)->default(0);
$table->integer('product_id')->unsigned();
$table->integer('customer_group_id')->unsigned()->nullable();
$table->timestamps();
$table->foreign('product_id')->references('id')->on('products')->onDelete('cascade');
$table->foreign('customer_group_id')->references('id')->on('customer_groups')->onDelete('cascade');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('product_customer_group_prices');
}
};
?>
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.
*
* @return void
*/
public function up()
{
Schema::create('product_customer_group_prices', function (Blueprint $table) {
$table->bigIncrements('id');
$table->integer('qty')->default(0);
$table->string('value_type');
$table->decimal('value', 12, 4)->default(0);
$table->integer('product_id')->unsigned();
$table->integer('customer_group_id')->unsigned()->nullable();
$table->timestamps();
$table->foreign('product_id')->references('id')->on('products')->onDelete('cascade');
$table->foreign('customer_group_id')->references('id')->on('customer_groups')->onDelete('cascade');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('product_customer_group_prices');
}
};
Function Calls
| None |
Stats
| MD5 | e7efa076450fa52223c1cae153ea2378 |
| Eval Count | 0 |
| Decode Time | 97 ms |