[Fixed]-Print status of database table

1👍

In MySQL, you probably want to use DESCRIBE tablename; you can get more information about ways to inspect your database in the official docs.

Note that other databases will use other methods; Django itself is database-agnostic.

👤Hamms

Leave a comment