Identify database table for content type

Hello.
Is there a way to quickly identify the DB table name associated to a certain Tailor Blueprint? Maybe an artisan command to quickly find the table name?

Hey @jeraso

Yes, it is based on the uuid.

uuid: 6947ff28-b660-47d7-9240-24ca6d58aeae

The uuid above will result in a table name xc_6947ff28b66047d7924024ca6d58aeae*

Technically you can give them meaningful names in the uuid to make things easier.

uuid: my_table_name

The above results in a table name xc_my_table_name*

2 Likes

Thanks, @daft . It is very useful to know that.