increments('id'); $table->string('sum_deposits', 255)->nullable(); $table->text('bonus_description')->nullable(); $table->string('bonus', 25)->nullable(); $table->integer('status')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('leadership_bonuses'); } }