increments('id'); $table->string('symbol_name', 250)->nullable(); $table->string('Symbol', 250)->nullable(); $table->enum('Status', [Active,Inactive])->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('master_plans'); } }