increments('id'); $table->integer('user_id')->nullable(); $table->string('user_type', 100)->nullable(); $table->string('adds_type', 100)->nullable(); $table->string('tittle', 200)->nullable(); $table->string('address', 255)->nullable(); $table->string('price', 100)->nullable(); $table->string('Image', 255)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('adds'); } }