Semaphore/db/sql/migrations/v2.9.6.sql

10 lines
341 B
MySQL
Raw Normal View History

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
);