Initial commit
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user