mirror of
https://github.com/Rushilwiz/SkoolOS.git
synced 2025-04-16 02:10:19 -04:00
19 lines
391 B
Python
19 lines
391 B
Python
# Generated by Django 3.0.7 on 2020-06-10 01:10
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('api', '0004_student_added_to'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='student',
|
|
name='completed',
|
|
field=models.TextField(blank=True, default=''),
|
|
),
|
|
]
|