12345678910111213 |
- # -*-coding:utf-8 -*-
- from django.db import models
- # Create your models here.
- class Users(models.Model):
- """
- 用户表
- """
- username = models.CharField(u"用户名", max_length=32, blank=True, default="")
- password = models.CharField(u"密码", max_length=128)
- status = models.CharField(u"状态", max_length=64)
- permission = models.CharField(u"权限", max_length=64)
- signup_time = models.CharField(u"注册时间", max_length=64)
|