26 lines
602 B
Python
26 lines
602 B
Python
# Generated by Django 2.0.6 on 2018-10-18 08:00
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('assignments', '0002_auto_20181015_1237'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='customassignment',
|
|
name='assignment_ptr',
|
|
),
|
|
migrations.AddField(
|
|
model_name='assignment',
|
|
name='user_created',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
migrations.DeleteModel(
|
|
name='CustomAssignment',
|
|
),
|
|
]
|