Gitiles
Code Review
Sign In
gerrit-dev.monogon.dev
/
monogon
/
c59c515435eff154d15c8f4f84ba9b83f93a94c8
/
.
/
cloud
/
bmaas
/
bmdb
/
model
/
migrations
/
1681826233_exponential_backoff.up.sql
blob: 94fd8a52277f93e4ed7f284871372354e4f5312d [
file
] [
log
] [
blame
]
-- Add interval, in seconds. This is used to calculate subsequent backoff values
-- for exponential backoffs. A future migration should make this field
-- non-nullable.
ALTER
TABLE
work_backoff
ADD
COLUMN
last_interval_seconds BIGINT
NULL
;