If I have a couple models in (name your favorite framework):
# pseudo-code
class Fruit
primary_key = CompositeKey(tenant_id, object_id)
weight = DecimalField()
class Restaurant
primary_key = CompositeKey(tenant_id, object_id)
haz_cheeseburger = BooleanField()
fruit_available = ForeignKey(Fruit) # <-- important part
Is it possible to have a database constraint that will make it impossible to insert a Resaturant who's tenant_id part of the primary key points to TenantA and who's fruit_available's tenant_id points to TenantB. Basically, protect me from accidentally relating objects that belong to different tenants.
