Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F9314159
06.sql
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
625 B
Subscribers
None
06.sql
View Options
-- SWH Scheduler Schema upgrade
-- from_version: 05
-- to_version: 06
-- description: relax constraints on intervals for one-shot tasks
begin
;
insert
into
dbversion
(
version
,
release
,
description
)
values
(
6
,
now
(),
'Work In Progress'
);
alter
table
task_type
alter
column
default_interval
drop
not
null
,
alter
column
min_interval
drop
not
null
,
alter
column
max_interval
drop
not
null
,
alter
column
backoff_factor
drop
not
null
;
alter
table
task
alter
column
current_interval
drop
not
null
,
add
constraint
task_check
check
(
policy
<>
'recurring'
or
current_interval
is
not
null
);
commit
;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Jul 3, 12:13 PM (2 d, 2 m ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3284979
Attached To
rDSCH Scheduling utilities
Event Timeline
Log In to Comment