Skip to content

Commit

Permalink
one-line fix to BHM_Spiders_Generic_Superset (model field name was !=…
Browse files Browse the repository at this point in the history
… db field name)
  • Loading branch information
tdwelly committed Sep 24, 2024
1 parent 039c443 commit ab87dbf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/sdssdb/peewee/sdss5db/catalogdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -1198,7 +1198,8 @@ class BHM_Spiders_Generic_Superset(CatalogdbModel):
# Chosen to match X-ray columns defined in eROSITA/SDSS-V MoU (v2.0, April 2019)
ero_version = TextField(index=True, null=True) # string identifying this eROSITA data
# reduction version
ero_souuid = TextField(index=True, null=True) # string identifying this X-ray source
# ero_souuid = TextField(index=True, null=True) # string identifying this X-ray source
ero_detuid = TextField(index=True, null=True) # string identifying this X-ray source
ero_flux = FloatField(null=True) # X-ray flux, 0.5-8keV band, erg/cm2/s
ero_flux_err = FloatField(null=True) # X-ray flux uncertainty, 0.5-8keV band,
# erg/cm2/s
Expand Down

1 comment on commit ab87dbf

@tdwelly
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Apologies - I thought I was pushing to a branch rather than main.
It's a trivial fix, so shouldn't cause any mischief.

Please sign in to comment.