We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f598612 commit 6712213Copy full SHA for 6712213
roundup/backends/back_postgresql.py
@@ -151,6 +151,11 @@ def fix_version_2_tables(self):
151
self.sql('CREATE INDEX %ss_key_idx ON %ss(%s_key)'%(name, name,
152
name))
153
154
+ def fix_version_3_tables(self):
155
+ rdbms_common.Database.fix_version_3_tables(self)
156
+ self.sql('''CREATE INDEX words_both_idx ON public.__words
157
+ USING btree (_word, _textid)''')
158
+
159
def add_actor_column(self):
160
# update existing tables to have the new actor column
161
tables = self.database_schema['tables']
0 commit comments