[Answer]-Django inherited model instance creation function

1👍

Is the create() function in Model_2Manager written correctly as is?

It is.

Is there some way for me to call Model_1Manager‘s create() function?? How would that work?

Unfortunately in this case Model_1Manager.create() does not do enough to initialize a Model_2, so you should not attempt to call it.

Leave a comment