Skip to content

Commit

Permalink
Attempt to fix migration issues
Browse files Browse the repository at this point in the history
Remove useless prints
  • Loading branch information
monsieurswag committed Nov 22, 2024
1 parent 6daa48d commit 29aaf52
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
# Generated by Django 5.1.1 on 2024-11-22 01:05
# Generated by Django 5.1.1 on 2024-11-22 01:25

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("iam", "0009_create_allauth_emailaddress_objects"),
('iam', '0008_user_is_third_party'),
]

operations = [
migrations.AddField(
model_name="user",
name="preferences",
model_name='user',
name='preferences',
field=models.JSONField(default=dict),
),
]
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

from django.db import migrations


def create_emailaddress_objects(apps, schema_editor):
try:
from allauth.account.models import EmailAddress
Expand All @@ -18,10 +17,9 @@ def create_emailaddress_objects(apps, schema_editor):
finally:
pass


class Migration(migrations.Migration):
dependencies = [
("iam", "0008_user_is_third_party"),
("iam", "0009_user_preferences"),
]

operations = [
Expand Down

0 comments on commit 29aaf52

Please sign in to comment.