fanatic/database/migrations/20_create_categorizables_table.php

33 lines
818 B
PHP
Raw Normal View History

2022-04-22 20:01:30 -07:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class() extends Migration {
2022-04-22 20:01:30 -07:00
/**
* Run the migrations.
*/
public function up()
{
2022-04-23 16:52:47 -07:00
Schema::create('categorizables', function (Blueprint $table) {
2022-04-22 20:01:30 -07:00
$table->id();
$table->timestamps(6);
$table->foreignId('category_id')
->constrained('categories')
->onUpdate('cascade')
->onDelete('restrict');
$table->unsignedBigInteger('categorizable_id');
$table->string('categorizable_type');
2022-04-22 20:01:30 -07:00
});
}
/**
* Reverse the migrations.
*/
public function down()
{
2022-04-23 16:25:16 -07:00
Schema::dropIfExists('categorizable');
2022-04-22 20:01:30 -07:00
}
};