Skip to content

Commit

Permalink
add migration
Browse files Browse the repository at this point in the history
  • Loading branch information
jefer94 committed Jun 12, 2024
1 parent 2f6ad54 commit 1c11dd7
Showing 1 changed file with 49 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Generated by Django 5.0.6 on 2024-06-12 07:25

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('payments', '0046_consumptionsession_operation_code_and_more'),
]

operations = [
migrations.RemoveField(
model_name='serviceset',
name='academy',
),
migrations.RemoveField(
model_name='serviceset',
name='services',
),
migrations.RemoveField(
model_name='subscription',
name='selected_service_set',
),
migrations.RemoveField(
model_name='planfinancing',
name='selected_service_set',
),
migrations.RemoveField(
model_name='plan',
name='service_set',
),
migrations.RemoveField(
model_name='consumable',
name='service_set',
),
migrations.AlterField(
model_name='service',
name='type',
field=models.CharField(choices=[('COHORT_SET', 'Cohort set'),
('MENTORSHIP_SERVICE_SET', 'Mentorship service set'),
('EVENT_TYPE_SET', 'Event type set'), ('VOID', 'Void')],
default='COHORT_SET',
help_text='Service type',
max_length=22),
),
migrations.DeleteModel(name='ServiceSetTranslation', ),
migrations.DeleteModel(name='ServiceSet', ),
]

0 comments on commit 1c11dd7

Please sign in to comment.