mirror of https://github.com/sgoudham/Enso-Bot.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
351 B
Python
17 lines
351 B
Python
5 years ago
|
# -*- coding: UTF-8 -*-
|
||
|
|
||
|
"""
|
||
|
An app with a model that is not managed for testing that South does
|
||
|
not try to manage it in any way
|
||
|
"""
|
||
|
from django.db import models
|
||
|
|
||
|
class Legacy(models.Model):
|
||
|
|
||
|
name = models.CharField(max_length=10)
|
||
|
size = models.IntegerField()
|
||
|
|
||
|
class Meta:
|
||
|
db_table = "legacy_table"
|
||
|
managed = False
|