Fix student import test on PostgreSQL
This commit is contained in:
parent
1e974c1865
commit
922acea79b
3 changed files with 20 additions and 2 deletions
16
stages/migrations/0005_extend_student_avs.py
Normal file
16
stages/migrations/0005_extend_student_avs.py
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('stages', '0004_add_student_report_fields'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='student',
|
||||
name='avs',
|
||||
field=models.CharField(blank=True, max_length=20, verbose_name='No AVS'),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue