-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a8c0a66
commit 1dfcd5d
Showing
2 changed files
with
25 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Generated by Django 4.2.14 on 2024-10-01 08:01 | ||
""" | ||
Add organization_email field to the organization profile model | ||
""" | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
""" | ||
Add organization_email field to the organization profile model | ||
""" | ||
|
||
dependencies = [ | ||
("api", "0007_odktoken_expires"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="organizationprofile", | ||
name="organization_email", | ||
field=models.EmailField( | ||
blank=True, max_length=254, verbose_name="email address" | ||
), | ||
), | ||
] |
18 changes: 0 additions & 18 deletions
18
onadata/apps/api/migrations/0008_organizationprofile_organization_email.py
This file was deleted.
Oops, something went wrong.