Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SN2 15 #277

Merged
merged 2 commits into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions python/sdssdb/peewee/sdss5db/opsdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ class CameraFrame(OpsdbBase):
field='pk',
model=Camera)
ql_sn2 = FloatField()
sn2_15 = FloatField()
sn2 = FloatField()
comment = TextField(null=True)
pk = AutoField()
Expand Down
1 change: 1 addition & 0 deletions schema/sdss5db/opsdb/opsdb.sql
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ CREATE TABLE opsdb.camera_frame (
exposure_pk INTEGER NOT NULL,
camera_pk SMALLINT NOT NULL,
ql_sn2 REAL,
sn2_15 REAL,
sn2 REAL,
comment TEXT);

Expand Down