Skip to content

Commit

Permalink
fix: conflicting migrations error
Browse files Browse the repository at this point in the history
  • Loading branch information
becdavid committed Jan 3, 2024
1 parent e649339 commit f24f5fc
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Generated by Django 3.2.16 on 2024-01-03 15:32

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('third_party_auth', '0007_auto_20220121_1956'),
('third_party_auth', '0008_auto_20220324_1422'),
]

operations = [
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 3.2.16 on 2024-01-03 15:53

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('third_party_auth', '0009_merge_0007_auto_20220121_1956_0008_auto_20220324_1422'),
]

operations = [
migrations.AddField(
model_name='emailproviderconfig',
name='was_valid_at',
field=models.DateTimeField(blank=True, help_text='Timestamped field that indicates a user has successfully logged in using this configuration at least once.', null=True),
),
migrations.AlterField(
model_name='emailproviderconfig',
name='name',
field=models.CharField(blank=True, help_text='Name of this provider (shown to users)', max_length=50),
),
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Generated by Django 3.2.16 on 2024-01-03 15:53

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('bigcommerce_app', '0009_auto_20220823_2237'),
]

operations = [
migrations.RemoveField(
model_name='customer',
name='bc_country_code',
),
migrations.RemoveField(
model_name='customer',
name='bc_postal_code',
),
]

0 comments on commit f24f5fc

Please sign in to comment.