increments('id'); $table->text('title')->nullable(); $table->string('name', 50)->nullable(); $table->text('address')->nullable(); $table->text('representing')->nullable(); $table->text('location')->nullable(); $table->text('sublocation')->nullable(); $table->text('property_type')->nullable(); $table->string('price_range', 30)->nullable(); $table->string('bedroom', 30)->nullable(); $table->string('bathroom', 30)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('leads'); } }