Skip to content

Commit

Permalink
Add schema upgrade for uptimetracker into suseInternalState
Browse files Browse the repository at this point in the history
  • Loading branch information
brett060102 committed Jul 29, 2024
1 parent 27dd4ce commit 522af23
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
--
-- add uptime_data to suseInternalState
--

INSERT INTO suseInternalState (id, name, label)
SELECT 13, 'uptimetracker.requestdata', 'Uptime Tracking Data''
WHERE NOT EXISTS (
SELECT 1 FROM suseInternalState
WHERE id = 13
);

0 comments on commit 522af23

Please sign in to comment.