企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
- 创建模型 ~~~ from __future__ import unicode_literals from django.db import models class Arttcle(models.Model): title = models.CharField(max_length=32, default="title") content = models.TextField(null=True) pub_time = models.DateTimeField(null=True) def __unicode__(self): return self.title ~~~ - 生成数据表 - python manage.py makemigrations - python manage.py migrate