Semaphore/db/sql/migrations/v2.9.6.sql
2024-02-12 01:32:00 +05:00

10 lines
341 B
SQL

create table runner
(
id integer primary key autoincrement,
project_id int,
token varchar(255) not null,
webhook varchar(1000) not null default '',
max_parallel_tasks int not null default 0,
foreign key (`project_id`) references project(`id`) on delete cascade
);