module documentation

Undocumented

Class MigrationWriter Take a Migration instance and is able to produce the contents of the migration file from it.
Class OperationWriter Undocumented
Constant MIGRATION_HEADER_TEMPLATE Undocumented
Constant MIGRATION_TEMPLATE Undocumented
MIGRATION_HEADER_TEMPLATE: str = (source)

Undocumented

Value
'''# Generated by Django %(version)s on %(timestamp)s

'''
MIGRATION_TEMPLATE: str = (source)

Undocumented

Value
'''%(migration_header)s%(imports)s

class Migration(migrations.Migration):
%(replaces_str)s%(initial_str)s
    dependencies = [
%(dependencies)s    ]

...