app.memos.migrations.0005_alter_memosnapshot_approval_history

 1# Generated by Django 5.2.2 on 2025-06-20 17:04
 2
 3from django.db import migrations, models
 4
 5
 6class Migration(migrations.Migration):
 7
 8    dependencies = [
 9        ('memos', '0004_memosnapshot_hierarchy'),
10    ]
11
12    operations = [
13        migrations.AlterField(
14            model_name='memosnapshot',
15            name='approval_history',
16            field=models.JSONField(default=list),
17        ),
18    ]
class Migration(django.db.migrations.migration.Migration):
 7class Migration(migrations.Migration):
 8
 9    dependencies = [
10        ('memos', '0004_memosnapshot_hierarchy'),
11    ]
12
13    operations = [
14        migrations.AlterField(
15            model_name='memosnapshot',
16            name='approval_history',
17            field=models.JSONField(default=list),
18        ),
19    ]

The base class for all migrations.

Migration files will import this from django.db.migrations.Migration and subclass it as a class called Migration. It will have one or more of the following attributes:

  • operations: A list of Operation instances, probably from django.db.migrations.operations
  • dependencies: A list of tuples of (app_path, migration_name)
  • run_before: A list of tuples of (app_path, migration_name)
  • replaces: A list of migration_names

Note that all migrations come out of migrations and into the Loader or Graph as instances, having been initialized with their app label and name.

dependencies = [('memos', '0004_memosnapshot_hierarchy')]
operations = [<AlterField model_name='memosnapshot', name='approval_history', field=<django.db.models.fields.json.JSONField>>]