for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateCategorizablesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up(): void
Schema::create(config('rinvex.categories.tables.categorizables'), function (Blueprint $table) {
// Columns
$table->integer('category_id')->unsigned();
$table->morphs('categorizable');
$table->timestamps();
// Indexes
$table->unique(['category_id', 'categorizable_id', 'categorizable_type'], 'categorizables_ids_type_unique');
$table->foreign('category_id')->references('id')->on(config('rinvex.categories.tables.categories'))
->onDelete('cascade')->onUpdate('cascade');
});
}
* Reverse the migrations.
public function down(): void
Schema::dropIfExists(config('rinvex.categories.tables.categorizables'));