[Answered ]-Django – does model need own table if it inherits solely to change the manager?

2👍

For a start, your inner class should be called Meta, not meta.

But rather than managed = False, you should be using proxy = True to signify that you are creating a proxy model rather than another real model.

Leave a comment