Skip to content

Commit

Permalink
Add done field to ln2_fill table
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Nov 11, 2024
1 parent 2881181 commit c07345b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions python/sdssdb/peewee/lvmdb/lvmopsdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,7 @@ class Meta:
class LN2Fill(LVMOpsBase):
pk = AutoField()
action = TextField()
done = BooleanField()
start_time = DateTimeField()
end_time = DateTimeField()
purge_start = DateTimeField()
Expand Down
1 change: 1 addition & 0 deletions schema/lvmdb/lvmopsdb.sql
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,7 @@ CREATE TABLE lvmopsdb.guider_coadd (
CREATE TABLE lvmopsdb.ln2_fill (
pk SERIAL PRIMARY KEY NOT NULL,
action TEXT,
done BOOLEAN,
start_time TIMESTAMPTZ,
end_time TIMESTAMPTZ,
purge_start TIMESTAMPTZ,
Expand Down

0 comments on commit c07345b

Please sign in to comment.