mirror of
https://github.com/Hopiu/django.git
synced 2026-05-28 00:24:08 +00:00
10 lines
271 B
Python
10 lines
271 B
Python
|
|
from django.db import models
|
||
|
|
|
||
|
|
class User(models.Model):
|
||
|
|
username = models.CharField(max_length=12, unique=True)
|
||
|
|
serial = models.IntegerField()
|
||
|
|
|
||
|
|
class UserSite(models.Model):
|
||
|
|
user = models.ForeignKey(User, to_field="username")
|
||
|
|
data = models.IntegerField()
|