mirror of
https://github.com/bugsink/bugsink.git
synced 2026-01-29 08:59:44 -06:00
8 lines
282 B
Python
8 lines
282 B
Python
from django.db import models
|
|
|
|
|
|
class Project(models.Model):
|
|
# id is implied which makes it an Integer; we would prefer a uuid but the sentry clients have int baked into the DSN
|
|
# parser (we could also introduce a special field for that purpose but that's ugly too)
|
|
pass
|