increments('id'); $table->string('deposit_amount', 255)->nullable(); $table->text('bonus_description')->nullable(); $table->string('bonus', 25)->nullable(); $table->enum('status', ['Active','Inactive'])->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('leadership_settings'); } }