PR-Pilot-AI / pr-pilot

An AI agent for your development workflow that can search and manipulate the code base, browse the internet and interact with Github issues and pull requests
https://www.pr-pilot.ai
GNU General Public License v3.0
148 stars 15 forks source link

🐛 Fix missing migration for SentryIntegration model #188

Closed pr-pilot-ai[bot] closed 2 months ago

pr-pilot-ai[bot] commented 2 months ago

The SentryIntegration model was added to accounts/models.py to store the Sentry API key, but the corresponding migration file is missing. Please create a migration file for this new model and ensure it is applied correctly.

Steps to Reproduce

  1. Check the accounts/models.py file for the SentryIntegration model.
  2. Notice that there is no migration file for this model in accounts/migrations/.

Expected Behavior

A migration file should be present to reflect the changes made to the models.

Suggested Solution

Run python manage.py makemigrations to create the migration file and commit it to the repository.

References

Environment