Given an existing Django model:

class MyModel(models.Model):
    field1 = ...
    field2 = ...
    ...
    fieldN = ...

I would like to create a wholly separate model that looks like this:

class MyModel2(models.Model):
    field1 = ...
    field2 = ...
    ...
    fieldN = ...

    fieldA = ...
    fieldB = ...
    ...
    fieldZ = ...

Multi-table inheritance does not work for me as I want MyModel2 to be backed by a database table containing all of its fields, not just the extra ones plus a link to the MyModel table.

Defining an Abstract Base Class might work if I could change the definition of MyModel. But is there another way, possibly using the Python type metaclass?

link|improve this question

71% accept rate
I would use an Abstract Base Class. Metaclass magic is too clever for this. – Alasdair Feb 20 at 11:41
feedback

1 Answer

Why not an abstract base class for both, and one of your concrete classes has no further fields?

link|improve this answer
Because in general I may not be able to change the definition of MyModel. So essentially I'm looking for a function that, given the original unchanged MyModel, returns MyModel2. – jl6 Feb 20 at 11:55
@jl6: I suggest you read about Django models, then play around with them, and try to implement that, then come back with any specific questions you have. Examine the _meta attribute of your models - there's a wealth of stuff in there. – Marcin Feb 20 at 12:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.