Skip to content

Commit b83ffbd

Browse files
committed
fix: add migration for django 5.2 support in edx-platform
1 parent e20de44 commit b83ffbd

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

CHANGELOG.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ Change Log
1616
Unreleased
1717
----------
1818
* nothing unreleased
19+
[6.3.4]
20+
--------
21+
* fix: add migration for Django 5.2 support in edx-platform
1922

2023
[6.3.3]
2124
--------

enterprise/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
Your project description goes here.
33
"""
44

5-
__version__ = "6.3.3"
5+
__version__ = "6.3.4"
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 5.2 on 2025-08-28 07:19
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('enterprise', '0240_alter_enterprisecustomer_enable_data_sharing_consent_and_more'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='defaultenterpriseenrollmentintention',
15+
name='realized_enrollments',
16+
field=models.ManyToManyField(through='enterprise.DefaultEnterpriseEnrollmentRealization', through_fields=('intended_enrollment', 'realized_enrollment'), to='enterprise.enterprisecourseenrollment'),
17+
),
18+
]

0 commit comments

Comments
 (0)