fanatic/database/migrations/20_create_categorizable_table.php
2022-04-23 16:25:16 -07:00

37 lines
808 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('categorizable', function (Blueprint $table) {
$table->id();
$table->timestamps();
$table->foreignId('category_id')
->constrained('categories')
->onUpdate('cascade')
->onDelete('restrict');
$table->unsignedBigInteger('categorizable_id');
$table->string('categorizable_type');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('categorizable');
}
};