id(); $table->integer('postable_id'); // Make author polymorph: user / organization / other $table->string('postable_type'); // Make author polymorph: user / organization / other $table->integer('category_id')->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('posts'); } };