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.
2 parents f17634b + fbf8e9e commit 5080559Copy full SHA for 5080559
src/python/ensembl/xrefs/xref_source_db_model.py
@@ -42,7 +42,7 @@ class Source(Base):
42
43
class Version(Base):
44
__tablename__ = "version"
45
- __table_args__ = Index("version_idx", "source_id", "revision")
+ __table_args__ = (Index("version_idx", "source_id", "revision"),)
46
47
version_id = Column(INTEGER(10), primary_key=True, autoincrement=True)
48
source_id = Column(INTEGER(10), ForeignKey("source.source_id"))
0 commit comments