Skip to content

Commit d8c6b6b

Browse files
committed
Turn id field into an AutoField (by relying on the implicit primary
key definition in Django) - Legacy-Id: 4021
1 parent 4806a52 commit d8c6b6b

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

ietf/ipr/models.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,6 @@ class Meta:
196196
db_table = 'ipr_rfcs'
197197

198198
class IprUpdate(models.Model):
199-
id = models.IntegerField(primary_key=True)
200199
ipr = models.ForeignKey(IprDetail, related_name='updates')
201200
updated = models.ForeignKey(IprDetail, db_column='updated', related_name='updated_by')
202201
status_to_be = models.IntegerField(null=True, blank=True)

0 commit comments

Comments
 (0)