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;
class CreateTmpsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('tmps', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('name', 500)->nullable()->index('pre_tmp_title_index');
$table->string('value')->nullable();
$table->longText('content')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('tmps');
}
}
?>
Did this file decode correctly?
Original Code
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateTmpsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('tmps', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('name', 500)->nullable()->index('pre_tmp_title_index');
$table->string('value')->nullable();
$table->longText('content')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('tmps');
}
}
Function Calls
None |
Stats
MD5 | b84449482cd595043adbe9e2e982afab |
Eval Count | 0 |
Decode Time | 68 ms |