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; class CreateHistoryTable extends Mig..
Decoded Output download
<?php
use Illuminate\Database\Migrations\Migration;
class CreateHistoryTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
// Schema::create('history', function ($table) {
// $table->increments('id');
// $table->integer('checkedout_to')->nullable;
// $table->integer('location_id')->nullable;
// $table->timestamps();
// $table->integer('user_id')->nullable();
// $table->engine = 'InnoDB';
// });
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//Schema::drop('history');
}
}
?>
Did this file decode correctly?
Original Code
<?php
use Illuminate\Database\Migrations\Migration;
class CreateHistoryTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
// Schema::create('history', function ($table) {
// $table->increments('id');
// $table->integer('checkedout_to')->nullable;
// $table->integer('location_id')->nullable;
// $table->timestamps();
// $table->integer('user_id')->nullable();
// $table->engine = 'InnoDB';
// });
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//Schema::drop('history');
}
}
Function Calls
None |
Stats
MD5 | c7e5c1aafffc1ea1bb215ab423dd8ede |
Eval Count | 0 |
Decode Time | 100 ms |