models.py 462 B

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