Fixed formatting. Please use WikiFormatting and use Preview before submitting.
Why do you think you have to copy the Meta class wholesale? Given that unique_together
affects the database table definitions, and proxy models are intended to simply change Python behavior while using the database table from the proxied model, it does not make sense to copy unique_together
into the proxy model. So, what problem do you encounter if you do not attempt to set unique_together
in the proxy model? That would be a problem to investigate and fix, if there is one. For now closing this as invalid since the described behavior appears correct to me.