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 EditLocationIdAssetLogsTable e..
Decoded Output download
<?php
use Illuminate\Database\Migrations\Migration;
class EditLocationIdAssetLogsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
// Schema::table('asset_logs', function ($table) {
// $table->string('location_id')->nullable()->change();
// $table->dateTime('added_on',11)->nullable()->default(DB::raw('CURRENT_TIMESTAMP(0)'))->change();
// });
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}
?>
Did this file decode correctly?
Original Code
<?php
use Illuminate\Database\Migrations\Migration;
class EditLocationIdAssetLogsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
// Schema::table('asset_logs', function ($table) {
// $table->string('location_id')->nullable()->change();
// $table->dateTime('added_on',11)->nullable()->default(DB::raw('CURRENT_TIMESTAMP(0)'))->change();
// });
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}
Function Calls
None |
Stats
MD5 | d6ec6edad14823ec40ae402601e9ff20 |
Eval Count | 0 |
Decode Time | 74 ms |