increments('id');
$table->string('name', 30);
$table->integer('country_id');
$table->integer('state_id');
$table->integer('pincode')->nullable();
$table->timestamps();
});
}
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('cities');
}
}