-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #381 from openedx/bbeggs/ENT-8017
feat: Add batch_id to assignment creation
- Loading branch information
Showing
3 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
...rise_access/apps/content_assignments/migrations/0015_learnercontentassignment_batch_id.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Generated by Django 4.2.9 on 2024-01-09 23:19 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('content_assignments', '0014_alter_historicalassignmentconfiguration_options_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='historicallearnercontentassignment', | ||
name='allocation_batch_id', | ||
field=models.UUIDField(blank=True, default=None, help_text='A reference to the batch that this assignment was created in. Helpful for grouping assignments together.', null=True), | ||
), | ||
migrations.AddField( | ||
model_name='learnercontentassignment', | ||
name='allocation_batch_id', | ||
field=models.UUIDField(blank=True, default=None, help_text='A reference to the batch that this assignment was created in. Helpful for grouping assignments together.', null=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters