Skip to content

Commit

Permalink
chore: squashed migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
adamstankiewicz committed Oct 31, 2024
1 parent fd76b50 commit 7441052
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 42 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 4.2.16 on 2024-10-31 13:23
# Generated by Django 4.2.16 on 2024-10-31 13:59

from django.conf import settings
from django.db import migrations, models
Expand Down Expand Up @@ -47,7 +47,7 @@ class Migration(migrations.Migration):
('expired_subscription_modal_messaging', models.TextField(blank=True, help_text='The content of a modal that will appear to learners upon subscription expiration. This text can be used for custom guidance per customer.', null=True)),
('button_label_in_modal', models.CharField(blank=True, help_text='The text that will appear as on the button in the expiration modal', max_length=255, null=True)),
('url_for_button_in_modal', models.CharField(blank=True, help_text='The URL that should underly the sole button in the expiration modal', max_length=512, null=True)),
('customer_agreement', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, related_name='custom_subscription_expiration_messaging', to='subscriptions.customeragreement')),
('customer_agreement', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, related_name='_custom_subscription_expiration_messaging', to='subscriptions.customeragreement')),
],
),
]

This file was deleted.

This file was deleted.

2 changes: 0 additions & 2 deletions license_manager/apps/subscriptions/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,8 +321,6 @@ class CustomSubscriptionExpirationMessaging(models.Model):
customer_agreement = models.OneToOneField(
CustomerAgreement,
on_delete=models.CASCADE,
blank=True,
null=True,
related_name='_custom_subscription_expiration_messaging',
unique=True,
)
Expand Down

0 comments on commit 7441052

Please sign in to comment.