summaryrefslogtreecommitdiff
path: root/postgresqleu/transferwise/models.py
diff options
context:
space:
mode:
authorMagnus Hagander2025-06-04 13:45:19 +0000
committerMagnus Hagander2025-06-11 13:55:22 +0000
commit872fd374ed1b2eb07959064925538f00ba8c7b02 (patch)
tree0d230f4f01cd0d5b8a02054949bdfbd2468d6a56 /postgresqleu/transferwise/models.py
parent645409a12fd76cd44eda768315f288baa9c9f550 (diff)
New transferwise APIs no longer allow downloading statements
So remove the scheduled job that handles them, as well as the database table that stores them.
Diffstat (limited to 'postgresqleu/transferwise/models.py')
-rw-r--r--postgresqleu/transferwise/models.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/postgresqleu/transferwise/models.py b/postgresqleu/transferwise/models.py
index 0659149b..58bdab52 100644
--- a/postgresqleu/transferwise/models.py
+++ b/postgresqleu/transferwise/models.py
@@ -52,15 +52,3 @@ class TransferwisePayout(models.Model):
sentat = models.DateTimeField(null=True, blank=True)
completedat = models.DateTimeField(null=True, blank=True)
completedtrans = models.ForeignKey(TransferwiseTransaction, blank=True, null=True, on_delete=models.CASCADE)
-
-
-class TransferwiseMonthlyStatement(models.Model):
- paymentmethod = models.ForeignKey(InvoicePaymentMethod, blank=False, null=False, on_delete=models.CASCADE)
- month = models.DateField(null=False, blank=False)
- downloaded = models.DateTimeField(null=False, blank=False, auto_now_add=True)
- contents = models.BinaryField(null=False)
-
- class Meta:
- unique_together = (
- ('month', 'paymentmethod'),
- )