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 RenameContributingArtistId extends Migration
{
public function up(): void
{
Schema::table('songs', static function (Blueprint $table): void {
$table->integer('artist_id')->unsigned()->nullable();
$table->foreign('artist_id')->references('id')->on('artists')->onDelete('cascade');
});
}
}
?>
Did this file decode correctly?
Original Code
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class RenameContributingArtistId extends Migration
{
public function up(): void
{
Schema::table('songs', static function (Blueprint $table): void {
$table->integer('artist_id')->unsigned()->nullable();
$table->foreign('artist_id')->references('id')->on('artists')->onDelete('cascade');
});
}
}
Function Calls
| None |
Stats
| MD5 | 507e13f2a63803f5b98d940b54f088a8 |
| Eval Count | 0 |
| Decode Time | 111 ms |