c785e59371
* curio storage path gc: lay out the structure * curio gc: Implement storage metadata gc * move bored singleton task impl to harmonytask * curio: run storage gc task on storage node * make gen
9 lines
232 B
SQL
9 lines
232 B
SQL
create table harmony_task_singletons (
|
|
task_name varchar(255) not null,
|
|
task_id bigint,
|
|
last_run_time timestamp,
|
|
|
|
primary key (task_name),
|
|
foreign key (task_id) references harmony_task (id) on delete set null
|
|
);
|