7 lines
276 B
MySQL
7 lines
276 B
MySQL
|
|
-- Migration 124: Telefoni shared secret setting
|
||
|
|
|
||
|
|
INSERT INTO settings (key, value, category, description, value_type, is_public)
|
||
|
|
VALUES
|
||
|
|
('telefoni_shared_secret', '', 'telefoni', 'Shared secret token til Yealink callbacks', 'string', false)
|
||
|
|
ON CONFLICT (key) DO NOTHING;
|