increments('id'); $table->string('field_name', 255)->nullable(); $table->string('field_slug_name', 255)->nullable(); $table->integer('enable_status')->nullable(); $table->integer('require_status')->nullable(); $table->integer('order')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('registeration_fields'); } }