Skip to content

Commit

Permalink
chore: make table optional for DRF PATCH and POST (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
fuziontech authored Sep 15, 2023
1 parent 7fbe8de commit 5811b3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion housewatch/models/backup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class ScheduledBackup(models.Model):
# This will be a CRON expression for the job
schedule: models.CharField = models.CharField(max_length=255)
incremental_schedule: models.CharField = models.CharField(max_length=255, null=True)
table: models.CharField = models.CharField(max_length=255, null=True)
table: models.CharField = models.CharField(max_length=255, null=True, blank=True)
database: models.CharField = models.CharField(max_length=255)
cluster: models.CharField = models.CharField(max_length=255, null=True)
bucket: models.CharField = models.CharField(max_length=255)
Expand Down

0 comments on commit 5811b3f

Please sign in to comment.