21 lines
533 B
Python
21 lines
533 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("accounts", "0004_premiumentitlement"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="studentprofile",
|
|
name="display_name",
|
|
field=models.CharField(blank=True, max_length=40),
|
|
),
|
|
migrations.AddField(
|
|
model_name="studentprofile",
|
|
name="country",
|
|
field=models.CharField(blank=True, max_length=80),
|
|
),
|
|
]
|