Skip to content

Commit 04ec428

Browse files
Revert "chore(member merge): increase user email max length (#91999)"
This reverts commit 6699064. Co-authored-by: wedamija <6288560+wedamija@users.noreply.github.com>
1 parent bcf25f0 commit 04ec428

File tree

3 files changed

+2
-35
lines changed

3 files changed

+2
-35
lines changed

migrations_lockfile.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ nodestore: 0002_nodestore_no_dictfield
2121

2222
replays: 0005_drop_replay_index
2323

24-
sentry: 0905_increase_email_field_length
24+
sentry: 0904_onboarding_task_project_id_idx
2525

2626
social_auth: 0002_default_auto_field
2727

src/sentry/migrations/0905_increase_email_field_length.py

Lines changed: 0 additions & 33 deletions
This file was deleted.

src/sentry/users/models/user.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ class User(Model, AbstractBaseUser):
104104
# this column is called first_name for legacy reasons, but it is the entire
105105
# display name
106106
name = models.CharField(_("name"), max_length=200, blank=True, db_column="first_name")
107-
email = models.EmailField(_("email address"), blank=True, max_length=200)
107+
email = models.EmailField(_("email address"), blank=True, max_length=75)
108108
is_staff = models.BooleanField(
109109
_("staff status"),
110110
default=False,

0 commit comments

Comments
 (0)