diff options
author | Dan McGee <dan@archlinux.org> | 2013-11-06 22:08:01 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2013-11-06 22:08:01 -0600 |
commit | 071bd6bd71f681c45048fc0a0961e58d43d44d48 (patch) | |
tree | fec1348a7be6c5a5c360da2216994011d74dd9ed /main/models.py | |
parent | a4cf77ba247605fb442b314e311de2829bb3706b (diff) |
Drop old base64-ed PGP signature column
We've moved onto bytes only now.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'main/models.py')
-rw-r--r-- | main/models.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/main/models.py b/main/models.py index 70872c60..3f964082 100644 --- a/main/models.py +++ b/main/models.py @@ -108,7 +108,6 @@ class Package(models.Model): packager_str = models.CharField('packager string', max_length=255) packager = models.ForeignKey(User, null=True, blank=True, on_delete=models.SET_NULL) - pgp_signature = models.TextField('PGP signature', null=True, blank=True) signature_bytes = models.BinaryField('PGP signature', null=True) flag_date = models.DateTimeField(null=True, blank=True) |