increments('id'); $table->string('property_type', 255)->nullable(); $table->string('property_category', 255)->nullable(); $table->string('district', 255)->nullable(); $table->string('city', 255)->nullable(); $table->string('locality', 255)->nullable(); $table->string('keyword', 255)->nullable(); $table->integer('beds')->nullable(); $table->integer('baths')->nullable(); $table->string('price', 255)->nullable(); $table->string('posted_by', 255)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('properties'); } }