mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-24 22:06:43 +01:00
6fa3e50198
* feat(runners): add migartion * feat(runners): sql implementation
10 lines
341 B
SQL
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
|
|
); |