Trying to build a multitenanted ecommerce platform. Any idea how to add SiteRelated to the Product and Category? I tried the following below but the migrations don't register
from django.db import models from cartridge.shop.models import Product from cartridge.shop.models import Category from mezzanine.core.models import SiteRelated Product.__bases__ += (SiteRelated,) Category.__bases__ += (SiteRelated,) -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
