increments('id'); $table->char('name', 35)->nullable(); $table->integer('country_id')->nullable(); $table->char('country_code', 3)->nullable(); $table->char('district', 20)->nullable(); $table->integer('population')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('cities'); } }