GithubHelp home page GithubHelp logo

django-wishlist's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

django-wishlist's Issues

Field defines a relation with model 'Tag', which is either not installed, or is abstract

Performing system checks...

Unhandled exception in thread started by <function check_errors..wrapper at 0x7fe82631c620>
Traceback (most recent call last):
File "/home/ljsalvatierra/bin/anaconda3/envs/django3/lib/python3.5/site-packages/django/utils/autoreload.py", line 226, in wrapper
fn(_args, *_kwargs)
File "/home/ljsalvatierra/bin/anaconda3/envs/django3/lib/python3.5/site-packages/django/core/management/commands/runserver.py", line 121, in inner_run
self.check(display_num_errors=True)
File "/home/ljsalvatierra/bin/anaconda3/envs/django3/lib/python3.5/site-packages/django/core/management/base.py", line 420, in check
raise SystemCheckError(msg)
django.core.management.base.SystemCheckError: SystemCheckError: System check identified some issues:

ERRORS:
wishlist.Item.tags: (fields.E300) Field defines a relation with model 'Tag', which is either not installed, or is abstract.

System check identified 1 issue (0 silenced).

Field defines a relation with model 'Tag', which is either not installed, or is abstract

I am struk in this error

   class JobPostProposal(Timestampable, SoftDeletes): 
            id = models.UUIDField(primary_key=True, unique=True, editable=False, default = uuid.uuid4)
            job_post = models.ForeignKey(JobPost, on_delete=models.CASCADE, related_name='job_post_proposal')
            tp_user_id = models.ForeignKey('candidates.TPUser', on_delete=models.DO_NOTHING, db_constraint=False)
            # status = 
        
            class Meta:
                db_table = "job_post_proposals"
                unique_together = [["job_post", "tp_user_id"]]
            this is my model.
class TPUser(models.Model):
    id = models.BigAutoField(primary_key=True)
    name = models.CharField(max_length=255)
    fname = models.CharField(max_length=255)
    email_verified_at = models.DateTimeField(blank=True, null=True)
    email_verified_status = models.IntegerField()
    country_code = models.CharField(max_length=255, blank=True, null=True)
    
        class Meta:
        app_label = 'talentplace'
        managed = False
        db_table = 'users'
this is a new model from another database, 
i am trying to fecth the this TPUser id in JObPOstProposal model, there i am getting the error

#E300, #E307

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.