From: Michael Tremer Date: Fri, 5 May 2023 06:29:28 +0000 (+0000) Subject: builds: Allow disabling test builds over the API X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=16c8c846b4ac7b10931ed899bdc6459d4e4958d3;p=pbs.git builds: Allow disabling test builds over the API Signed-off-by: Michael Tremer --- diff --git a/src/database.sql b/src/database.sql index 587645f7..91c87f1c 100644 --- a/src/database.sql +++ b/src/database.sql @@ -127,7 +127,7 @@ CREATE TABLE public.builds ( deprecated_by integer, test_group_id integer, test boolean DEFAULT false NOT NULL, - disable_tests boolean DEFAULT false NOT NULL + disable_test_builds boolean DEFAULT false NOT NULL );