MCPcopy Create free account
hub / github.com/alpha2phi/python-apps / Migration

Class Migration

hackernews/backend-python/links/migrations/0001_initial.py:6–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4
5
6class 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 ]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected