increments('id'); $table->integer('campaign_id')->nullable(); $table->integer('kind_support_id')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('campaign_kind_supports'); } }