module documentation

Undocumented

Constant MIGRATION​_HEADER​_TEMPLATE Undocumented
Constant MIGRATION​_TEMPLATE Undocumented
Class ​Migration​Writer Take a Migration instance and is able to produce the contents of the migration file from it.
Class ​Operation​Writer Undocumented
MIGRATION_HEADER_TEMPLATE: str =

Undocumented

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

'''
MIGRATION_TEMPLATE: str =

Undocumented

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

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

...