Skip to content

Commit

Permalink
Merge branch 'main' of github.com:sdss/sdssdb into main
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Mar 2, 2021
2 parents 408eac5 + 0830dc5 commit 924c0e7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
13 changes: 13 additions & 0 deletions python/sdssdb/peewee/sdss5db/catalogdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -1177,6 +1177,19 @@ class Meta:
table_name = 'tess_toi'


class TESS_TOI_v05(CatalogdbModel):

pk = BigIntegerField(primary_key=True)

tic = ForeignKeyField(TIC_v8,
column_name='ticid',
object_id_name='ticid',
backref='+')

class Meta:
table_name = 'tess_toi_v05'


class XMM_OM_SUSS_4_1(CatalogdbModel):

pk = BigIntegerField(primary_key=True)
Expand Down
1 change: 0 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ dev =
pytest>=5.2
pytest-cov>=2.4.0
pytest-sugar>=0.8.0
sdsstools[dev]>=0.1.11
ipython>=7.13.0
ipdb>=0.13.2
pytest-postgresql>=2.2.1
Expand Down

0 comments on commit 924c0e7

Please sign in to comment.