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.
Source:stackexchange.com