use the right name for the domain_bans table

This commit is contained in:
Izalia Mae 2024-01-24 01:20:00 -05:00
parent 09e7a8f404
commit e66be009a6

View file

@ -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'),