From 6ca4489e020d8aad52e314179f4cea04ca4a2cbe Mon Sep 17 00:00:00 2001 From: nex Date: Mon, 26 Feb 2024 13:12:05 +0000 Subject: [PATCH] Fix db init error --- utils/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/db.py b/utils/db.py index 6fa5a60..fb56d4f 100644 --- a/utils/db.py +++ b/utils/db.py @@ -232,7 +232,7 @@ class BridgeBind(orm.Model): "entry_id": orm.UUID(primary_key=True, default=uuid.uuid4), "matrix_id": orm.Text(unique=True), "discord_id": orm.BigInteger(), - "webhook": orm.Text(nullable=True, default=None), + "webhook": orm.Text(default=None), } if TYPE_CHECKING: