increments('id'); $table->string('level_1', 255)->nullable(); $table->string('level_2', 255)->nullable(); $table->string('level_3', 255)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('representative_commissions'); } }