How to reuse a model .
The best way to reuse a model is to inherit the model's parent class. Here's how you should do it. Inherited from models.Model.
from django.db import models
class trial(models.Model):
Also make sure your application models importare in the appropriate models.py file.
source
share