| 4 | |
| 5 | |
| 6 | class Migration(migrations.Migration): |
| 7 | |
| 8 | initial = True |
| 9 | |
| 10 | dependencies = [ |
| 11 | ] |
| 12 | |
| 13 | operations = [ |
| 14 | migrations.CreateModel( |
| 15 | name='Task', |
| 16 | fields=[ |
| 17 | ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), |
| 18 | ('title', models.CharField(max_length=200)), |
| 19 | ('completed', models.BooleanField(blank=True, default=False, null=True)), |
| 20 | ], |
| 21 | ), |
| 22 | ] |
nothing calls this directly
no outgoing calls
no test coverage detected