MCPcopy Create free account
hub / github.com/codemistic/Web-Development / Migration

Class Migration

Django_React_Todo/api/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='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 ]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected