I am trying to implement multiple inheritance with Partitioned model and Aggregate Model
class AdAgencyLocationPurposeAggregate(PostgresAggregateModel,PostgresPartitionedModel):
PostgresAggregateModel
:
class PostgresAggregateModel(PostgresModel,metaclass=PostgresAggregateModelMeta ):
PostgresPartitionedModel
class PostgresPartitionedModel( PostgresModel,metaclass=PostgresPartitionedModelMeta ):