It is difficult to specify the model of foreign keys in the inheritance model.
When inheriting this model, you may accidentally declare null=True for the foreign key, so I want to force null=False to be applied in the __init__
method, etc.
Alternatively, it is also okay to declare a foreign key in the inheritance model and change only the model linked to the foreign key when inheriting.
Is it possible? Or should I use another method?