mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-01 15:54:53 +00:00
9 lines
323 B
Python
9 lines
323 B
Python
from django.db import models
|
|
|
|
|
|
class BugIdMap(models.Model):
|
|
# Explicit id field because we don't want a SERIAL here, since we generate
|
|
# the actual bug IDs externally.
|
|
id = models.IntegerField(null=False, blank=False, primary_key=True)
|
|
messageid = models.CharField(max_length=500, null=False, blank=False)
|