Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/sdss/sdssdb
Browse files Browse the repository at this point in the history
  • Loading branch information
havok2063 committed Jul 16, 2024
2 parents 8fe89a2 + e09bada commit 240640f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion python/sdssdb/peewee/sdss5db/catalogdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -2381,7 +2381,10 @@ class CatalogFromSDSS_DR19p_Speclite(CatalogdbModel):
distance = FloatField()

class Meta:
table_name = "catalog_to_sdss_dr19p_speclite"
# The target table is deliberately named 'catalog_from_X'
# in order to differentiate it from the usual mapping logic
# in "catalog_to_X" tables
table_name = "catalog_from_sdss_dr19p_speclite"
primary_key = False
reflect = False

Expand Down

0 comments on commit 240640f

Please sign in to comment.