Add this to the Speakers model:
mobile_number = models.CharField(
max_length=30,
blank=True,
help_text=_(u"For on-site use only, in case we need to get in touch with you.")
)
This is in Symposion's It's important that we collect this info so we have an emergency way to contact speakers. (We can't just tweet at them if a last-minute room change happens. :) )
I didn't put this in a PR because I'm not sure what other migrations or changes need to be made for it. I'm still new to Django.