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 06f6f1b commit fbf8e9eCopy full SHA for fbf8e9e
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