blob: 6c12c6ab5d5c5530ae34c5752826c9decc502422 (
plain)
1
2
3
4
5
6
7
8
9
10
|
from __future__ import unicode_literals
from django.db import models
class Foo(models.Model):
name = models.CharField(max_length=255)
class Meta:
app_label = 'another_app_waiting_migration'
|