From e66be009a6a6469038c44841cf168b714beecab6 Mon Sep 17 00:00:00 2001 From: Izalia Mae Date: Wed, 24 Jan 2024 01:20:00 -0500 Subject: [PATCH] use the right name for the domain_bans table --- relay/database/schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/relay/database/schema.py b/relay/database/schema.py index 6300d17..7b6d927 100644 --- a/relay/database/schema.py +++ b/relay/database/schema.py @@ -33,7 +33,7 @@ TABLES: list[Table] = [ Column('created', 'timestamp') ), Table( - 'instance_bans', + 'domain_bans', Column('domain', 'text', primary_key = True, unique = True, nullable = True), Column('reason', 'text'), Column('note', 'text'),