2013-04-02 01:51:53 +08:00
|
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
2014-12-22 04:19:05 +08:00
|
|
|
|
2011-01-24 23:18:56 +08:00
|
|
|
from django.db import models
|
2011-01-24 22:58:05 +08:00
|
|
|
|
2011-01-24 23:18:56 +08:00
|
|
|
|
|
|
|
class People(models.Model):
|
|
|
|
name = models.CharField(max_length=255)
|
2013-01-28 17:21:07 +08:00
|
|
|
parent = models.ForeignKey('self')
|
2011-01-24 23:18:56 +08:00
|
|
|
|
2013-11-03 12:36:09 +08:00
|
|
|
|
2011-01-24 23:18:56 +08:00
|
|
|
class Message(models.Model):
|
|
|
|
from_field = models.ForeignKey(People, db_column='from_id')
|
2012-02-05 15:51:37 +08:00
|
|
|
|
2013-11-03 12:36:09 +08:00
|
|
|
|
2012-02-05 15:51:37 +08:00
|
|
|
class PeopleData(models.Model):
|
|
|
|
people_pk = models.ForeignKey(People, primary_key=True)
|
|
|
|
ssn = models.CharField(max_length=11)
|
|
|
|
|
2013-11-03 12:36:09 +08:00
|
|
|
|
2012-02-05 15:51:37 +08:00
|
|
|
class PeopleMoreData(models.Model):
|
|
|
|
people_unique = models.ForeignKey(People, unique=True)
|
|
|
|
license = models.CharField(max_length=255)
|
|
|
|
|
2013-11-03 12:36:09 +08:00
|
|
|
|
2012-02-12 04:53:48 +08:00
|
|
|
class DigitsInColumnName(models.Model):
|
|
|
|
all_digits = models.CharField(max_length=11, db_column='123')
|
|
|
|
leading_digit = models.CharField(max_length=11, db_column='4extra')
|
|
|
|
leading_digits = models.CharField(max_length=11, db_column='45extra')
|
2012-08-24 03:07:56 +08:00
|
|
|
|
2013-11-03 12:36:09 +08:00
|
|
|
|
2014-07-06 02:48:57 +08:00
|
|
|
class SpecialName(models.Model):
|
2012-08-24 03:07:56 +08:00
|
|
|
field = models.IntegerField(db_column='field')
|
2012-08-24 04:50:25 +08:00
|
|
|
# Underscores
|
2012-08-24 03:07:56 +08:00
|
|
|
field_field_0 = models.IntegerField(db_column='Field_')
|
|
|
|
field_field_1 = models.IntegerField(db_column='Field__')
|
|
|
|
field_field_2 = models.IntegerField(db_column='__field')
|
2012-08-24 04:50:25 +08:00
|
|
|
# Other chars
|
|
|
|
prc_x = models.IntegerField(db_column='prc(%) x')
|
2013-04-02 01:51:53 +08:00
|
|
|
non_ascii = models.IntegerField(db_column='tamaño')
|
2013-02-01 03:34:36 +08:00
|
|
|
|
2014-07-06 02:48:57 +08:00
|
|
|
class Meta:
|
|
|
|
db_table = "inspectdb_special.table name"
|
|
|
|
|
2013-11-03 12:36:09 +08:00
|
|
|
|
2013-02-01 03:34:36 +08:00
|
|
|
class ColumnTypes(models.Model):
|
|
|
|
id = models.AutoField(primary_key=True)
|
2013-02-01 09:00:25 +08:00
|
|
|
big_int_field = models.BigIntegerField()
|
2013-08-12 04:19:09 +08:00
|
|
|
bool_field = models.BooleanField(default=False)
|
2013-02-01 09:00:25 +08:00
|
|
|
null_bool_field = models.NullBooleanField()
|
|
|
|
char_field = models.CharField(max_length=10)
|
2014-10-21 02:05:43 +08:00
|
|
|
null_char_field = models.CharField(max_length=10, blank=True, null=True)
|
2013-02-01 09:00:25 +08:00
|
|
|
comma_separated_int_field = models.CommaSeparatedIntegerField(max_length=99)
|
|
|
|
date_field = models.DateField()
|
|
|
|
date_time_field = models.DateTimeField()
|
|
|
|
decimal_field = models.DecimalField(max_digits=6, decimal_places=1)
|
|
|
|
email_field = models.EmailField()
|
|
|
|
file_field = models.FileField(upload_to="unused")
|
|
|
|
file_path_field = models.FilePathField()
|
|
|
|
float_field = models.FloatField()
|
|
|
|
int_field = models.IntegerField()
|
2014-12-31 04:45:03 +08:00
|
|
|
ip_address_field = models.IPAddressField()
|
2013-02-01 09:00:25 +08:00
|
|
|
gen_ip_adress_field = models.GenericIPAddressField(protocol="ipv4")
|
|
|
|
pos_int_field = models.PositiveIntegerField()
|
|
|
|
pos_small_int_field = models.PositiveSmallIntegerField()
|
|
|
|
slug_field = models.SlugField()
|
|
|
|
small_int_field = models.SmallIntegerField()
|
|
|
|
text_field = models.TextField()
|
|
|
|
time_field = models.TimeField()
|
|
|
|
url_field = models.URLField()
|
2014-07-15 04:42:05 +08:00
|
|
|
|
|
|
|
|
|
|
|
class UniqueTogether(models.Model):
|
|
|
|
field1 = models.IntegerField()
|
|
|
|
field2 = models.CharField(max_length=10)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
unique_together = ('field1', 'field2')
|