From d9e2250c5abbc0a0f18aacfd393169572afa41af Mon Sep 17 00:00:00 2001 From: Tristan Lee Date: Wed, 26 Oct 2022 08:42:35 -0500 Subject: [PATCH] added country index --- cisticola/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cisticola/base.py b/cisticola/base.py index 4e0b77f..6825569 100644 --- a/cisticola/base.py +++ b/cisticola/base.py @@ -476,7 +476,7 @@ channel_table = Table('channels', mapper_registry.metadata, Column('platform', String), Column('url', String), Column('screenname', String), - Column('country', JSONB), + Column('country', JSONB, index = True), Column('influencer', String), Column('public', Boolean), Column('chat', Boolean),