迁移数据库之前最好删除迁移文件
from django.contrib.auth.models import User, AbstractUser
from django.db import models
class LyzChar(models.Field):
def db_type(self, connection):
return 'char(%s)' % self.max_length
class LyzUser(AbstractUser):
user_mobile = LyzChar(max_length=11, default='', verbose_name="手机号")