Recently, I made chat service with django channels. It’s not temporary chat like CS, so I have to save and load all chat logs and messages.First, I try to use redis to save those data.But it’s not that big project, and I want to use django ORM to those data.I found good library to make multiple table per one model. I want to make multiple tables for Message model.architect enhances ORMs with mor..