| 4 | |
| 5 | |
| 6 | class Migration(migrations.Migration): |
| 7 | |
| 8 | initial = True |
| 9 | |
| 10 | dependencies = [ |
| 11 | ] |
| 12 | |
| 13 | operations = [ |
| 14 | migrations.CreateModel( |
| 15 | name='Link', |
| 16 | fields=[ |
| 17 | ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), |
| 18 | ('url', models.URLField()), |
| 19 | ('description', models.TextField(blank=True)), |
| 20 | ], |
| 21 | ), |
| 22 | ] |
nothing calls this directly
no outgoing calls
no test coverage detected