No. If you use abstract base models, then they don’t have their own tables and are simply used to avoid repeating field definitions in code. If you use concrete base models, they get their own table, and the child tables get a OneToOneField to the parent table. Creating a child instance also creates the related parent instance.
There’s no inheritance from the database point of view.