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 ChangeLicenceType extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
//
// $prefix = DB::getTablePrefix();
// DB::statement('ALTER TABLE '.$prefix.'licenses MODIFY COLUMN serial TEXT');
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
// $prefix = DB::getTablePrefix();
// DB::statement('ALTER TABLE '.$prefix.'licenses MODIFY COLUMN serial VARCHAR(255)');
}
}
?>
Did this file decode correctly?
Original Code
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class ChangeLicenceType extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
//
// $prefix = DB::getTablePrefix();
// DB::statement('ALTER TABLE '.$prefix.'licenses MODIFY COLUMN serial TEXT');
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
// $prefix = DB::getTablePrefix();
// DB::statement('ALTER TABLE '.$prefix.'licenses MODIFY COLUMN serial VARCHAR(255)');
}
}
Function Calls
None |
Stats
MD5 | 9e70da0952a91eb44576730259561b2a |
Eval Count | 0 |
Decode Time | 107 ms |