increments('id'); $table->text('AreaName')->nullable(); $table->integer('City_id')->nullable(); $table->text('description')->nullable(); $table->text('image')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('areas'); } }