mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
29 lines
1.1 KiB
Python
29 lines
1.1 KiB
Python
* importing troggle/settings.py
|
|
* importing troggle/localsettings.py
|
|
+ finished importing troggle/localsettings.py
|
|
+ finished importing troggle/settings.py
|
|
* importing troggle/settings.py
|
|
+ finished importing troggle/settings.py
|
|
** importing troggle/core/views_other.py
|
|
# This is an auto-generated Django model module.
|
|
# You'll have to do the following manually to clean this up:
|
|
# * Rearrange models' order
|
|
# * Make sure each model has one field with primary_key=True
|
|
# * Make sure each ForeignKey has `on_delete` set to the desired behavior.
|
|
# * Remove `managed = False` lines if you wish to allow Django to create, modify, and delete the table
|
|
# Feel free to rename the models, but don't rename db_table values or field names.
|
|
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'
|