2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2025-12-18 08:57:10 +00:00

move function

This commit is contained in:
Philip Sargent
2020-06-27 12:04:34 +01:00
parent e2713cfe2d
commit ca6f7ed587
13 changed files with 58032 additions and 46 deletions

View File

@@ -15,3 +15,14 @@
from __future__ import unicode_literals
from django.db import models
class DjangoMigrations(models.Model):
id = models.IntegerField(primary_key=True) # AutoField?
app = models.CharField(max_length=255)
name = models.CharField(max_length=255)
applied = models.DateTimeField()
class Meta:
managed = False
db_table = 'django_migrations'