Collapse all migrations prior to 2.0.0 into one.
This commit is contained in:
parent
6de039dc97
commit
b5834a8a66
105 changed files with 957 additions and 4692 deletions
|
@ -806,7 +806,9 @@ class LogEntry(BaseModel):
|
|||
|
||||
class Messages(BaseModel):
|
||||
content = TextField()
|
||||
uuid = CharField(default=uuid_generator, index=True)
|
||||
|
||||
# TODO: This should be non-nullable and indexed
|
||||
uuid = CharField(default=uuid_generator, max_length=36, null=True)
|
||||
|
||||
class RepositoryActionCount(BaseModel):
|
||||
repository = ForeignKeyField(Repository)
|
||||
|
|
Reference in a new issue