Skip to content

Commit

Permalink
update ngssretrsiction incl_excl docs
Browse files Browse the repository at this point in the history
  • Loading branch information
AaDalal committed Jul 6, 2023
1 parent 551b541 commit 6ff35b0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions backend/courses/migrations/0054_alter_ngssrestriction_inclusive.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Generated by Django 4.1.1 on 2023-02-19 18:34

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("courses", "0053_alter_ngssrestriction_code"),
]

operations = [
migrations.AlterField(
model_name="ngssrestriction",
name="inclusive",
field=models.BooleanField(
help_text='\nWhether this is an include or exclude restriction. Corresponds to the `incl_excl_ind`\nresponse field. `True` if include (ie, `incl_excl_ind` is "I") and `False`\nif exclude ("E").\n'
),
),
]

0 comments on commit 6ff35b0

Please sign in to comment.