mirror of
https://github.com/pretix/pretix.git
synced 2026-05-09 15:54:03 +00:00
Bank transfer: Allow using external IDs for deduplication (#3803)
* Bank transfer: Allow using external IDs for deduplication * Do not use empty string in nullable field
This commit is contained in:
@@ -82,6 +82,7 @@ class BankTransaction(models.Model):
|
||||
currency = models.CharField(max_length=10, null=True)
|
||||
state = models.CharField(max_length=32, choices=STATES, default=STATE_UNCHECKED)
|
||||
message = models.TextField()
|
||||
external_id = models.CharField(max_length=190, db_index=True, null=True, blank=True)
|
||||
checksum = models.CharField(max_length=190, db_index=True)
|
||||
payer = models.TextField(blank=True)
|
||||
reference = models.TextField(blank=True)
|
||||
|
||||
Reference in New Issue
Block a user