2025-02-20 07:48:49 +00:00
|
|
|
CREATE OR REPLACE DEFINER=`vn`@`localhost`
|
2024-01-15 11:31:03 +00:00
|
|
|
SQL SECURITY DEFINER
|
|
|
|
VIEW `pbx`.`followmeConf`
|
|
|
|
AS SELECT `f`.`extension` AS `name`,
|
|
|
|
`c`.`music` AS `music`,
|
|
|
|
`c`.`context` AS `context`,
|
|
|
|
`c`.`takeCall` AS `takecall`,
|
|
|
|
`c`.`declineCall` AS `declinecall`
|
|
|
|
FROM (
|
|
|
|
`pbx`.`followme` `f`
|
|
|
|
JOIN `pbx`.`followmeConfig` `c`
|
|
|
|
)
|