I am new to django framework.
I tried to create a simple blog by following djangogirls tutorials.
Here by default we get sqlite3 as default database Engine
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}
I tried some ORM queries also, Even performed some row sql queries
At my django project I have this db.sqlite3 file
blog db.sqlite3 env manage.py mysite
My Question: How to knew the schema that django created in this db.sqlite3(I knew mysql where I can see details about each database and tables,so here I just want to know more things in sqlite)
I have sqlite3 in my system and I tried .database command,but it just shows me
seq name file
--- --------------- ----------------------------------------------------------
0 main
question from:
https://stackoverflow.com/questions/42227778/how-to-view-database-and-schema-of-django-sqlite3-db 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…