About Doctype tables in DB

i created a custom module"Ticketing system" and create 2 DocTyped in it
i try to find it in mySql when run show tables i don’t find these two tables of Doctypes how i can find them.

Run bench mysql in terminal → and then run show tables;. This should show you all the doctypes. Every doctype by default gets appended with ‘tab’ prefix. So lets say doctype name was ‘Some Thing’, then look for tabSome Thing in the list. You can also see if select * from `tabSome Thing` yields any result or not. If so, then your doctype is created just fine.

1 Like

i tried to do the same thing but also i don’t found any table of mydoctype

If you can provide some screenshots, people will be ready to help