Skip to content

Commit

Permalink
Reenable reflection
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Apr 18, 2020
1 parent 9354e3d commit 9f551bd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/sdssdb/peewee/sdss5db/catalogdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@


class CatalogdbModel(BaseModel):

class Meta:
database = database
schema = 'catalogdb'
use_reflection = False
use_reflection = True


_Gaia_DR2_TwoMass_Deferred = DeferredThroughModel()
Expand All @@ -45,6 +46,7 @@ class Catalog(CatalogdbModel):

class Meta:
table_name = 'catalog'
use_reflection = True


class AllWise(CatalogdbModel):
Expand Down

0 comments on commit 9f551bd

Please sign in to comment.