Skip to content

Commit

Permalink
Merge pull request #2158 from gtech-mulearn/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
jelanmathewjames authored Jul 12, 2024
2 parents c97eae4 + 8e665e9 commit 1d48405
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions db/launchpad.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ class LaunchPad(models.Model):
launchpad_id = models.CharField(max_length=100, unique=True)
created_at = models.DateTimeField(auto_now_add=True)
updated_at = models.DateTimeField(auto_now=True)
created_by = models.ForeignKey(User,on_delete=models.SET(settings.SYSTEM_ADMIN_ID), related_name="launchpad_created_by")
updated_by = models.ForeignKey(User,on_delete=models.SET(settings.SYSTEM_ADMIN_ID), related_name="launchpad_updated_by")
created_by = models.ForeignKey(User, on_delete=models.SET(settings.SYSTEM_ADMIN_ID), related_name="launchpad_created_by", db_column='created_by')
updated_by = models.ForeignKey(User,on_delete=models.SET(settings.SYSTEM_ADMIN_ID), related_name="launchpad_updated_by", db_column='updated_by')

class Meta:
managed = False
Expand Down

0 comments on commit 1d48405

Please sign in to comment.