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;
class AddPhysicalToAssets extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
//
Schema::table('assets', function ($table) {
//$table->boolean('physical')->default(1);
$table->dropColumn('checkedout_to');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
// $table->dropColumn('physical');
}
}
?>
Did this file decode correctly?
Original Code
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class AddPhysicalToAssets extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
//
Schema::table('assets', function ($table) {
//$table->boolean('physical')->default(1);
$table->dropColumn('checkedout_to');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
// $table->dropColumn('physical');
}
}
Function Calls
None |
Stats
MD5 | e02e0d0c654d475df9a2533362f664c7 |
Eval Count | 0 |
Decode Time | 92 ms |