Source code for asyncorm.migrations.models

from asyncorm import models


[docs]class AsyncormMigrations(models.Model): app_name = models.CharField(max_length=75) name = models.CharField(max_length=75) applied = models.DateTimeField(auto_now=True)
[docs] class Meta: table_name = "asyncorm_migrations"