id(); $table->unsignedBigInteger('user_id')->nullable(); $table->unsignedBigInteger('post_id')->nullable(); $table->string('type')->default('article'); $table->integer('status')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('likes'); } }