increments('id'); $table->text('name')->nullable(); $table->text('min_investment')->nullable(); $table->text('max_investment')->nullable(); $table->text('profit')->nullable(); $table->text('interest_period_type')->nullable(); $table->text('investment_duration')->nullable(); $table->text('investment_duration_type')->nullable(); $table->text('interest_after_matured')->nullable(); $table->text('release_deposit')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('contract_settings'); } }