1 Star 0 Fork 0

python三级项目/python三级项目-刘宇注册

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
models.py 514 Bytes
一键复制 编辑 原始数据 按行查看 历史
“用户名” 提交于 2018-12-25 11:50 +08:00 . python
from django.db import models
# Create your models here.
# models.py
from django.db import models
class Test(models.Model):
name = models.CharField(max_length=20)
class UserInfo(models.Model):
username = models.CharField(max_length=32)
password = models.CharField(max_length=32)
class UserInfoNew(models.Model):
id=models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')
name = models.CharField(max_length=32)
password = models.CharField(max_length=32)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/python_iii_project/python.git
git@gitee.com:python_iii_project/python.git
python_iii_project
python
python三级项目-刘宇注册
master

搜索帮助