Skip to content

Commit

Permalink
Fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankApiyo committed Oct 1, 2024
1 parent a8c0a66 commit 1dfcd5d
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 18 deletions.
25 changes: 25 additions & 0 deletions onadata/apps/api/migrations/0008_org_profile_email.py
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"
),
),
]

This file was deleted.

0 comments on commit 1dfcd5d

Please sign in to comment.