id(); $table->timestamps(6); $table->foreignId('category_id') ->constrained('categories') ->onUpdate('cascade') ->onDelete('restrict'); $table->unsignedBigInteger('categorizable_id'); $table->string('categorizable_type'); }); } /** * Reverse the migrations. */ public function down() { Schema::dropIfExists('categorizable'); } };