Some checks failed
Build docker and publish / build (20.15.1) (push) Failing after 7m37s
15 lines
380 B
SQL
15 lines
380 B
SQL
INSERT INTO `system` (`category`, `key`, `value`, `type`, `desc`, `created_at`, `updated_at`)
|
|
SELECT 'signature',
|
|
'EnableSignature',
|
|
'false',
|
|
'bool',
|
|
'Enable signature verification for public APIs',
|
|
NOW(3),
|
|
NOW(3)
|
|
WHERE NOT EXISTS (
|
|
SELECT 1
|
|
FROM `system`
|
|
WHERE `category` = 'signature'
|
|
AND `key` = 'EnableSignature'
|
|
);
|