When trying to create a new user from login screen, we are receiving following error:
```
Unhandled Exception ("AphrontQueryException")
#1364: Field 'isMailingList' doesn't have a default value
```
Proposed fix is
```
Alter table user modify column isMailingList tinyint(1) not null default 0;