I added the follow fields to my table: Field('rooming_requests','string', length=500, label='Do you have any rooming requests?', widget=SQLFORM.widgets.text.widget, requires=[IS_LENGTH(500)]),
Field('misc_info','string', length=500, label='Anything else you would like us to know?', widget=SQLFORM.widgets.text.widget, requires=[IS_LENGTH(500)]), Field('us_citizen','boolean', label='Are you a US citizen?', requires=IS_IN_SET(['T', 'F'],zero='Choose One')), Field('dietary_restrict','string', length=500, label='Do you have any dietary restrictions?', widget=SQLFORM.widgets.text.widget, requires=[IS_LENGTH(500)]), When I did a migrate, the "rooming_requests" field and the "misc_info" fields were added to the table file and to the MySQL database but the "us_citizen" field and the "dietary_restrict" field was not. Subsequent migration attempts have had no effect. Please advise, ~Lennon