fix(models): Notification.plugin should be bigger to support FQN as value
This commit is contained in:
parent
5b3f63cd0a
commit
5819a0637f
|
@ -10,7 +10,7 @@ from .user import User
|
|||
class Notification(db.Model, ModelSerializeMixin):
|
||||
__tablename__ = "notification"
|
||||
id: int = db.Column("id", Serial, primary_key=True)
|
||||
plugin: str = db.Column(db.String(30), nullable=False)
|
||||
plugin: str = db.Column(db.String(127), nullable=False)
|
||||
text: str = db.Column(db.Text)
|
||||
data: Any = db.Column(db.PickleType(protocol=4))
|
||||
time: datetime = db.Column(UtcDateTime, nullable=False, default=UtcDateTime.current_utc)
|
||||
|
|
Loading…
Reference in New Issue