Skip to content

Commit

Permalink
Add column valve_times to ln2_fill table
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Sep 17, 2024
1 parent 8000b37 commit ac639d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions python/sdssdb/peewee/lvmdb/lvmopsdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,7 @@ class LN2Fill(LVMOpsBase):
configuration = JSONField()
log_data = JSONField()
plot_paths = JSONField()
valve_times = JSONField()

class Meta:
table_name = 'ln2_fill'
3 changes: 2 additions & 1 deletion schema/lvmdb/lvmopsdb.sql
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,8 @@ CREATE TABLE lvmopsdb.ln2_fill (
json_file TEXT,
configuration JSONB,
log_data JSONB,
plot_paths JSONB
plot_paths JSONB,
valve_times JSONB
);

-- constraints
Expand Down

0 comments on commit ac639d7

Please sign in to comment.