Add note about meminfo.email_2 field, aka. "alt. phone"

This commit is contained in:
Lance Edgar 2023-06-12 20:38:12 -05:00
parent 4952d2fa3d
commit c6144ab310

View file

@ -1263,7 +1263,10 @@ class MemberInfo(Base):
email = sa.Column('email_1', sa.String(length=50), nullable=True)
email2 = sa.Column('email_2', sa.String(length=50), nullable=True)
email2 = sa.Column('email_2', sa.String(length=50), nullable=True, doc="""
NB. this is labeled "Alt. Phone" in CORE Office member view, and
is named `altPhone` when dealing with CORE Office webservices API.
""")
ads_ok = sa.Column('ads_OK', sa.Boolean(), nullable=True, default=True)