django
django使用的默认数据库是sqlite3,但是在实际开发中很少使用这个数据库,说真的我本人也没使用过
sqlite3
db.sqlite3
1、创建迁移文件
python manage.py makemigrations
2、生成数据库文件
python manage.py migrate